-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.71 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
83
84
85
86
87
88
89
90
91
92
{
"name": "nw-r",
"version": "0.3.0",
"private": true,
"engines": {
"node": ">=11.4.0 <13.0.0",
"npm": "~6.10.3"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"eslint": "^6.6.0"
},
"dependencies": {
"@babel/helper-create-regexp-features-plugin": "^7.14.3",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.10.2",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@material-ui/core": "^4.10.1",
"@material-ui/lab": "^4.0.0-alpha.58",
"core-js": "^3.1.4",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"react-timeago": "^6.1.1",
"redux": "^4.0.4",
"redux-logger": "^3.0.6"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@storybook/addon-actions": "^5.3.17",
"@storybook/addon-knobs": "^5.3.17",
"@storybook/addon-links": "^5.3.17",
"@storybook/addons": "^5.3.17",
"@storybook/preset-create-react-app": "^2.1.2",
"@storybook/react": "^5.3.17",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.6",
"prettier": "^2.3.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "^3.4.3",
"react-test-renderer": "^16.8.6",
"storybook": "^5.3.19"
},
"scripts": {
"install": "cp -n ./src/config.example.js ./src/config.js",
"start": "PORT=5555 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"unit-test": "CI=true react-scripts test --env=jsdom",
"deploy": "./scripts/deploy.sh",
"invalidate": "aws cloudfront create-invalidation --distribution-id EFDQV1KCK7HPL --paths \"/*\"",
"eject": "react-scripts eject",
"format": "prettier --write \"src/**/*.js\"",
"lint": "npx eslint src/**/*.js src/**/*.jsx",
"prepushcheck": "CI=true && yarn unit-test && yarn lint",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"browse": "xdg-open http://localhost:5555",
"browse:prod": "xdg-open http://shell.ninjawars.net"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn prepushcheck"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}