forked from tsoo/react-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.09 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
{
"name": "react-starter",
"version": "0.1.0",
"private": true,
"devDependencies": {
"autoprefixer-stylus": "^0.11.0",
"concurrently": "^3.1.0",
"enzyme": "^2.6.0",
"react-addons-test-utils": "^15.4.1",
"react-scripts": "0.8.0",
"react-test-renderer": "^15.4.1",
"sinon": "^1.17.6",
"stylus": "^0.54.5"
},
"dependencies": {
"counterpart": "^0.17.6",
"history": "4.2.0",
"react": "~15.4.0",
"react-addons-css-transition-group": "15.4.0",
"react-dom": "~15.4.0",
"react-interpolate-component": "^0.10.0",
"react-router": "4.0.0-alpha.3",
"react-translate-component": "^0.13.1"
},
"scripts": {
"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/*.styl -o ./src/css/*.css",
"styles:watch": "stylus -u autoprefixer-stylus -w ./src/css/*.styl -o ./src/css/*.css",
"test": "react-scripts test --env=jsdom"
}
}