-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "nodejs-typescript",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "tsc-watch --project ./ --outDir ./dist --onSuccess 'nodemon $NODE_DEBUG_OPTION --inspect ./dist/index.js'",
"watch": "tsc-watch --project ./ --outDir ./dist",
"test": "NODE_ENV=test mocha -r ts-node/register src/**/*.spec.ts --exit",
"build": "tsc",
"migrate": "echo no migrations in this project"
},
"author": "Dekel Yaacov",
"license": "ISC",
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/chai-http": "^3.0.5",
"@types/es6-shim": "^0.31.37",
"@types/express": "^4.16.0",
"@types/multer": "^1.3.7",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"multer": "^1.4.1",
"node": "^10.0.0",
"reflect-metadata": "^0.1.12",
"routing-controllers": "^0.7.7",
"typedi": "^0.8.0"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"sinon": "^7.0.0",
"ts-node": "^7.0.1",
"tsc-watch": "^1.0.30",
"typescript": "^3.1.3"
},
"description": ""
}