-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 990 Bytes
/
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
{
"name": "sinergy-chat",
"version": "0.1.0",
"private": true,
"homepage": "http://yorublaireau.github.io/sinergy-chat",
"dependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-scripts": "1.0.14"
},
"scripts": {
"build-css": "node-sass-chokidar src/scss -o src/css",
"watch-css": "npm run build-css && node-sass-chokidar src/scss -o src/css --watch --recursive",
"dev": "concurrently \"npm run watch-css\"",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"concurrently": "^3.5.0",
"firebase": "^4.4.0",
"gh-pages": "^1.0.0",
"node-sass-chokidar": "^0.0.3"
},
"prettier": {
"printWidth": 180,
"tabWidth": 4
}
}