-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "roll",
"version": "0.1.0",
"private": true,
"homepage": "https://roll.sh/",
"scripts": {
"start": "cross-env BROWSER=none react-scripts start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --cache src --ext js,jsx",
"ci": "run-p lint",
"deploy:gh-pages": "gh-pages -d build -u \"CircleCI <circleci@deploy.com>\" -r \"https://${GH_TOKEN}@github.com/fabienjuif/roll.git\" -x",
"deploy:build": "cross-env NODE_ENV=production react-scripts build",
"deploy": "run-s deploy:build deploy:gh-pages"
},
"dependencies": {
"classnames": "^2.2.6",
"normalize.css": "^8.0.1",
"prop-types": "^15.6.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-scripts": "2.1.3",
"react-use": "^5.2.2",
"use-locales": "^0.1.2"
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"gh-pages": "^2.0.1",
"npm-run-all": "^4.1.5"
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"semi": [
"error",
"never"
],
"max-len": [
"error",
200
]
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}