-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 870 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 870 Bytes
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
{
"name": "nodejs-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/app.js",
"compile": "node ./node_modules/typescript/bin/tsc -p ./server && node ./node_modules/typescript/bin/tsc -p ./client && shx mkdir -p ./dist/views/ && shx cp -rf ./views/ ./dist/ && shx mkdir -p ./dist/public/ && shx cp -f ./node_modules/systemjs/dist/system.src.js ./dist/public/system.js"
},
"author": "Wayne Plummer",
"license": "Beerware",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.2",
"jquery": "^3.1.1",
"systemjs": "^0.21.4"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.0.39",
"@types/jquery": "^3.2.16",
"shx": "^0.3.2",
"typescript": "^2.6.1"
}
}