-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 852 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 852 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
{
"name": "helium",
"version": "0.1.0",
"private": true,
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-spinners": "^0.3.2",
"react-web3": "^0.4.5"
},
"devDependencies": {
"autoprefixer-stylus": "^0.10.0",
"react-scripts": "1.0.11",
"stylus": "^0.54.5",
"webpack": "^2.6.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"dev": "concurrently --names \"webpack, stylus\" --prefix name \"npm run start\" \"npm run styles:watch\"",
"styles": "stylus -u autoprefixer-stylus ./src/main.styl -o ./src/index.css",
"styles:watch": "stylus -u autoprefixer-stylus -w ./src/main.styl -o ./src/index.css",
"eject": "react-scripts eject"
}
}