-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.53 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
42
43
44
45
{
"name": "express-template",
"version": "3.0.1",
"description": "Website template (skeleton) based on Express.js 4, Vue.js and Vuetify 2",
"author": "NordicSoft",
"license": "MIT",
"private": true,
"main": "index.js",
"commit": "${commit}",
"backup": "${backup}",
"scripts": {
"lint:api": "(cd api && npm run lint)",
"lint:facade": "(cd facade && npm run lint)",
"lint:dashboard": "(cd dashboard && npm run lint)",
"lint": "npm run lint:api; npm run lint:facade; npm run lint:dashboard",
"build:facade": "(cd facade && npm run build)",
"build:dashboard": "(cd dashboard && npm run build)",
"build": "npm run build:facade && npm run build:dashboard",
"deploy": "npx gulp deploy",
"dev:api": "(cd api && npm run dev)",
"dev:facade": "(cd facade && npm run dev)",
"dev:dashboard": "(cd dashboard && npm run dev)",
"dev": "npx concurrently \"node index.js\" npm:dev:* --raw --kill-others-on-fail",
"postinstall": "(cd api && npm install); (cd facade && npm install); (cd dashboard && npm install)",
"start:api": "node api",
"start:facade": "node facade",
"start:dashboard": "node dashboard",
"start": "npm run start:api & npm run start:facade & npm run start:dashboard & node index.js"
},
"dependencies": {
"chalk": "^3.0.0",
"dotenv-defaults": "^1.1.1",
"express": "^4.17.1",
"http-proxy": "^1.18.0",
"http-proxy-middleware": "^1.0.3"
},
"devDependencies": {
"clipboardy": "^2.3.0"
},
"nodemonConfig": {
"watch": [
"index.js"
]
}
}