-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 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
{
"name": "yglf17",
"version": "0.1.0",
"private": true,
"homepage": ".",
"dependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-lazyload": "^2.2.7",
"react-router-dom": "^4.1.1",
"react-tap-event-plugin": "^2.0.1"
},
"devDependencies": {
"source-map-explorer": "^1.4.0",
"firebase-tools": "^3.9.1",
"husky": "^0.14.3",
"node-sass-chokidar": "^0.0.2",
"prettier": "^1.5.2",
"react-scripts": "1.0.7"
},
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"precommit": "yarn format && git add .",
"start": "react-scripts start",
"build": "react-scripts build",
"staging": "rm -rf docs && mkdir docs && react-scripts build && mv -v build/* docs",
"deploy": "react-scripts build && firebase deploy",
"test": "react-scripts test --env=jsdom",
"format": "prettier --trailing-comma es5 --single-quote --write 'src/**/*.js' 'src/**/!(node_modules)/**/*.js'"
}
}