-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (35 loc) · 1009 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
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "java_script_dev_env",
"version": "1.0.0",
"description": "Java Script development environment",
"scripts": {
"build:dev": "npm run security-check && npm run tsc",
"prebuild:dev": "npm run clean:dist",
"clean:dist": "npm run rimraf -- dist",
"build": "npm run build:dev && webpack --config webpack.config.dev.js",
"prestart": "node ./dist/buildScripts/serverStartMessage.js",
"serve": "npm run build && node ./dist/server.js",
"security-check": "nsp check",
"rimraf": "rimraf",
"tsc": "tsc"
},
"author": "Nuthan Kumar",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/express": "^4.11.1",
"@types/node": "^9.4.0",
"chalk": "^2.3.0",
"express": "^4.16.2",
"nsp": "^3.1.0",
"open": "0.0.5",
"path": "^0.12.7",
"rimraf": "^2.6.2",
"ts-loader": "^3.4.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
}
}