-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "webdev",
"private": true,
"description": "Website do Curso de Web de ADS do IFPI Picos",
"version": "0.1.1",
"author": "Jesiel Viana <[email protected]>",
"scripts": {
"build": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"removeStatic": "rm -rf public .cache",
"dev": "yarn develop",
"rebuild": "yarn removeStatic && yarn develop",
"start": "npm run develop",
"lint": "eslint --fix",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"babel-plugin-styled-components": "^1.10.0",
"core-js": "^3.6.4",
"dotenv": "^8.2.0",
"gatsby": "^2.15.19",
"gatsby-image": "^2.2.20",
"gatsby-plugin-dark-mode": "^1.1.2",
"gatsby-plugin-google-gtag": "^2.8.0",
"gatsby-plugin-manifest": "^2.2.18",
"gatsby-plugin-mdx": "^1.6.0",
"gatsby-plugin-offline": "^3.0.8",
"gatsby-plugin-react-helmet": "^3.1.8",
"gatsby-plugin-sharp": "^2.2.25",
"gatsby-plugin-styled-components": "^3.1.6",
"gatsby-remark-copy-linked-files": "^2.1.20",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^4.0.0",
"gatsby-remark-prismjs": "^3.3.14",
"gatsby-source-filesystem": "^2.1.25",
"gatsby-transformer-json": "^2.2.26",
"gatsby-transformer-remark": "^2.6.24",
"gatsby-transformer-sharp": "^2.2.16",
"husky": "^4.2.3",
"prism-react-renderer": "^1.0.2",
"prismjs": "^1.15.0",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.0",
"styled-components": "^4.1.3"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-plugin-react": "^7.21.5",
"standard": "^16.0.3"
},
"keywords": [
"web",
"ifpi",
"webdev",
"dev",
"html",
"css",
"js",
"javascript",
"react",
"node",
"express",
"gatsby"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jesielviana/webdev"
},
"bugs": {
"url": "https://github.com/jesielviana/webdev/issues"
}
}