-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.04 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
{
"name": "documentation",
"version": "1.0.0",
"description": "",
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"predeploy": "gatsby build && cp ./src/static/CNAME public/",
"deploy": "gh-pages -d public",
"lint": "prettier --list-different --config ./prettier.json \"{src,assets}/**/*.{ts,tsx,scss}\"",
"lint:fix": "prettier --list-different --config ./prettier.json --write \"{src,assets}/**/*.{ts,tsx,scss}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,assets}/**/*.{ts,tsx,scss}": [
"prettier --write --config ./prettier.json",
"git add"
]
},
"dependencies": {
"@types/lodash": "^4.14.123",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.2",
"gatsby": "^2.1.33",
"gatsby-image": "^2.0.20",
"gatsby-plugin-google-analytics": "^2.0.7",
"gatsby-plugin-react-helmet": "^3.0.2",
"gatsby-plugin-robots-txt": "^1.3.0",
"gatsby-plugin-sass": "^2.0.4",
"gatsby-plugin-sharp": "^2.0.12",
"gatsby-plugin-sitemap": "^2.0.2",
"gatsby-plugin-typescript": "^2.0.1",
"gatsby-remark-autolink-headers": "^2.0.16",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^2.0.6",
"gatsby-remark-prismjs": "^3.2.5",
"gatsby-source-filesystem": "^2.0.8",
"gatsby-transformer-remark": "^2.3.4",
"gatsby-transformer-sharp": "^2.1.8",
"lodash": "^4.17.11",
"node-sass": "^4.12.0",
"prismjs": "^1.15.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-helmet": "^5.2.0",
"react-spring": "^6.1.8",
"react-typist": "^2.0.5",
"typescript": "^3.1.6"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/StrontiumJS/Documentation/issues"
},
"homepage": "https://github.com/StrontiumJS/Documentation#readme",
"devDependencies": {
"@types/react-helmet": "^5.0.7",
"gh-pages": "^2.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
}
}