-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 860 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
{
"name": "doc",
"author": {
"name": "bunq",
"email": "[email protected]"
},
"homepage": "https://doc.bunq.com",
"scripts": {
"start-js": "./node_modules/react-scripts/bin/react-scripts.js start",
"build-js": "./node_modules/react-scripts/bin/react-scripts.js build",
"build-css": "./node_modules/node-sass-chokidar/bin/node-sass-chokidar src/ -o src/",
"build": "npm-run-all build-css build-js",
"watch-css": "npm run build-css && ./node_modules/node-sass-chokidar/bin/node-sass-chokidar src/ -o src/ --watch --recursive",
"start": "npm-run-all -p watch-css start-js"
},
"devDependencies": {
"npm-run-all": "^4.1.3",
"swagger-ui": "^3.18.2"
},
"dependencies": {
"node-sass-chokidar": "^1.3.3",
"react-scripts": "^1.1.5"
}
}