-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.23 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": "vice-loading",
"version": "0.0.1",
"license": "BSD-3-Clause",
"private": true,
"scripts": {
"start": "npm run server",
"server": "cd server && npm run start",
"port-forward": "kubectl port-forward service/app-exposer 8083:80",
"dev": "run-p dev-ui dev-server",
"dev-ui" : "nodemon",
"dev-server": "concurrently \"npm run port-forward\" \"npm run server\"",
"build-server": "cd server && npm run build",
"build-loading": "cd client-loading && npm run build",
"build-all": "run-s clean build-server build-loading",
"install-server": "cd server && npm install",
"install-loading": "cd client-loading && npm install",
"install-all": "run-p install-server install-loading",
"clean": "concurrently \"rimraf server/build\" \"rimraf client-loading/build\"",
"test": "cd server && npm run test"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"concurrently": "^4.0.1",
"dotenv": "^6.1.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2"
},
"nodemonConfig": {
"watch": [
"client-loading/src"
],
"ext": "js",
"exec": "npm run build-loading"
},
"dependencies": {
"npm": "^6.14.6"
}
}