-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 875 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 875 Bytes
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
{
"name": "react-forecast",
"version": "1.0.0",
"description": "",
"main": "index.js",
"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",
"styles:watch": "npm run styles -- -w"
},
"author": "",
"license": "ISC",
"devDependencies": {
"prop-types": "^15.7.2",
"react-scripts": "^2.1.8"
},
"dependencies": {
"concurrently": "^4.1.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"styled-components": "^4.4.0",
"stylus": "^0.54.5"
},
"browserslist": [
">0.2%",
"not ie <= 11",
"not op_mini all"
]
}