-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
{
"name": "dadoune.com",
"version": "2.2.10",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "react-static build",
"prettier": "yarn run prettier:ts -- \"./src/**/*.{ts,tsx}\"",
"prettier:ts": "prettier --single-quote --trailing-comma all --write",
"release": "standard-version && git push --follow-tags origin develop && git checkout master && git merge develop --no-edit && git push && git checkout develop",
"serve": "serve dist -p 3000",
"stage": "react-static build --staging",
"start": "react-static start"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,json}": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
},
"dependencies": {
"axios": "^0.18.1",
"dayjs": "^1.7.5",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-router": "^4.2.0",
"react-static": "^5.9.7",
"styled-components": "^3.4.2",
"styled-normalize": "^8.0.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^9.4.7",
"@types/react": "^16.4.11",
"@types/react-dom": "^16.0.7",
"@types/react-hot-loader": "^3.0.6",
"@types/react-router": "^4.0.16",
"@types/webpack-env": "^1.13.5",
"babel-plugin-styled-components": "^1.5.1",
"contentful": "^7.0.0",
"dotenv": "^6.0.0",
"highlight.js": "^9.12.0",
"husky": "^0.14.3",
"imagemin-webpack-plugin": "^2.2.0",
"lint-staged": "^7.2.2",
"marked": "^0.5.0",
"serve": "^10.0.0",
"standard-version": "^4.4.0",
"ts-loader": "^3.5.0",
"typescript": "^3.0.1",
"workbox-build": "^3.4.1"
},
"prettier": {
"useTabs": false,
"singleQuote": true,
"trailingComma": "all"
}
}