-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.19 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
38
39
40
41
{
"name": "cotd",
"version": "0.0.3",
"private": true,
"homepage": "http://andrewowen.github.io/catch-of-the-day",
"devDependencies": {
"concurrently": "3.5.1",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.11.0",
"react-scripts": "1.1.1"
},
"dependencies": {
"autoprefixer-stylus": "0.14.0",
"firebase": "^4.8.2",
"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-dom": "^4.2.2",
"react-transition-group": "^2.2.1",
"stylus": "0.54.5"
},
"scripts": {
"start": "react-scripts start",
"watch":
"concurrently --names \"webpack, stylus\" --prefix name \"npm run start\" \"npm run styles:watch\"",
"build": "react-scripts build",
"deploy": "gh-pages -d 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",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
}
}