-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.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
{
"name": "cotd",
"version": "0.0.3",
"private": true,
"devDependencies": {
"concurrently": "3.5.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"react-scripts": "1.1.1"
},
"dependencies": {
"autoprefixer-stylus": "0.14.0",
"firebase": "^4.10.1",
"prop-types": "^15.6.0",
"re-base": "3.2.2",
"react": "^16.3.0-alpha.1",
"react-dom": "^16.3.0-alpha.1",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-transition-group": "^2.2.1",
"serve": "^6.5.6",
"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",
"styles:watch": "stylus -u autoprefixer-stylus -w ./src/css/style.styl -o ./src/css/style.css"
}
}