-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
{
"name": "silent-victory-encounter",
"version": "0.1.1",
"homepage": "http://silentvictory.fastwombat.com",
"private": true,
"devDependencies": {
"husky": "4.2.5",
"lint-staged": "10.2.13",
"prettier": "2.1.1",
"xmldom": "0.1.27",
"xpath": "0.0.23"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "7.10.5",
"classnames": "2.2.6",
"customize-cra": "1.0.0",
"lodash": "4.17.20",
"mobx": "5.15.6",
"mobx-react": "6.3.0",
"mobx-react-router": "4.1.0",
"moment": "2.27.0",
"random-js": "1.0.8",
"react": "16.13.1",
"react-app-rewired": "2.1.6",
"react-dom": "16.13.1",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.3",
"store": "2.0.4"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"configure": "aws s3api create-bucket --bucket silentvictory.fastwombat.com && aws s3 website s3://silentvictory.fastwombat.com --index-document index.html --error-document error.html && aws s3api put-bucket-policy --bucket silentvictory.fastwombat.com --policy file://etc/bucketPolicy.json",
"predeploy-client": "npm run build",
"deploy": "npm run deploy-client",
"deploy-client": "aws s3 sync build/ s3://silentvictory.fastwombat.com"
},
"engines": {
"node": "12.18.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,css,scss,md,json}": "prettier --write",
"*.{js,jsx}": "eslint --max-warnings 0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}