-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.44 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
{
"name": "cotd",
"version": "0.0.3",
"private": true,
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "4.1.0",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-wesbos": "^1.0.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"react-scripts": "3.4.1"
},
"dependencies": {
"autoprefixer-stylus": "0.14.0",
"firebase": "^7.6.0",
"prop-types": "^15.6.0",
"re-base": "4.0.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router-dom": "^4.2.2",
"react-transition-group": "^2.2.1",
"serve": "^10.1.2",
"stylus": "0.54.5"
},
"scripts": {
"dev": "react-scripts start",
"start": "serve --single ./build",
"watch": "concurrently --names \"webpack, stylus\" --prefix name \"npm run start\" \"npm run styles:watch\"",
"build": "react-scripts build",
"eject": "react-scripts eject",
"styles": "stylus -u autoprefixer-stylus ./src/css/style.styl -o ./src/css/style.css",
"now-build": "npm run build && mv build dist",
"styles:watch": "npm run styles -- -w"
},
"browserslist": [
">0.2%",
"not ie <= 11",
"not op_mini all"
]
}