-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 966 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
{
"name": "docker-MEAN-ts-starter",
"version": "0.0.1",
"description": "Starter project for a dockerized MEAN webapp with Typescript implementations and full support for hot code reload and debugging.",
"author": "Alexander Gruschina <[email protected]>",
"repository": "https://github.com/alex-gru/docker-MEAN-ts-starter",
"license": "MIT",
"main": "server.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"serveDebug": "nodemon -L --debug /usr/src/app/",
"serve": "node /usr/src/app/",
"start": "concurrently \"npm run build\" \"npm run serve\"",
"startDebug": "concurrently \"npm run build:watch\" \"npm run serveDebug\""
},
"dependencies": {
"express": "~4.14.0",
"typescript": "~2.2.2",
"pug": "~2.0.0-beta11",
"path": "~0.12.7",
"http": "~0.0.0",
"mongoose": "~4.9.5",
"reload": "~1.1.2"
},
"devDependencies": {
"concurrently": "^3.2.0",
"@types/node": "~7.0.13",
"@types/angular": "~1.6.15"
}
}