-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.29 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.29 KB
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
{
"name": "ds-vis-parcel",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.11.1",
"@types/node": "^10.0.9",
"@types/node-sass": "^3.10.32",
"concurrently": "^3.5.1",
"node-sass": "^4.9.3",
"nodemon": "^1.17.4",
"typescript": "^2.8.3"
},
"dependencies": {
"express": "^4.16.3"
},
"scripts": {
"build": "npm run build:client && npm run build:server",
"build:client": "parcel build client/views/*.html -d build --public-url public/ --no-minify",
"build:server": "tsc --project server",
"clean": "rm -rf ./.cache && rm -rf ./build",
"serve": "node server",
"serve:school": "./node_modules/forever/bin/forever start server",
"stop:school": "./node_modules/forever/bin/forever stop server",
"dev": "concurrently -r --kill-others \"npm run watch\" \"npm run dev:server\"",
"dev:server": "nodemon -w server",
"watch": "concurrently -k \"npm run watch:server\" \"npm run watch:client\"",
"watch:client": "parcel watch client/views/*.html -d build --public-url public/",
"watch:server": "tsc -w --project server",
"serve:client": "parcel serve client/views/*.html -d build --public-url public/ --open --hmr-port 8080 --no-minify"
}
}