-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "cotd",
"version": "0.0.3",
"private": true,
"devDependencies": {
"concurrently": "8.2.2",
"react-scripts": "5.0.1"
},
"dependencies": {
"autoprefixer-stylus": "^1.0.0",
"firebase": "^8.10.0",
"postcss": "^8.4.32",
"prop-types": "15.8.1",
"re-base": "4.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.21.0",
"react-transition-group": "4.4.5",
"serve": "14.2.1",
"stylus": "0.62.0"
},
"scripts": {
"dev": "react-scripts start",
"start": "react-scripts start",
"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"
]
}