-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 844 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 844 Bytes
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
{
"name": "react-kanban",
"version": "0.1.0",
"private": true,
"dependencies": {
"body-parser": "^1.18.2",
"bookshelf": "^0.12.1",
"express": "^4.16.2",
"gulp": "^3.9.1",
"gulp-sass": "^3.1.0",
"knex": "^0.14.4",
"pg": "^7.4.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-scripts": "1.1.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"scripts": {
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive"
},
"devDependencies": {
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.2"
}
}