-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.05 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.05 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "zert-manager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --inspect=5858 -r ts-node/register ./src/server.ts",
"start:watch": "nodemon",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "[email protected]:j.huemmer/zert-manager.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.1",
"@types/mongodb": "^3.3.6",
"body-parser": "^1.19.0",
"class-validator": "^0.10.2",
"express": "^4.17.1",
"mongodb": "^3.3.2",
"ts-transformer-keys": "^0.3.5"
},
"devDependencies": {
"@types/node": "^12.7.11",
"eslint": "^6.5.1",
"eslint-plugin-import": "^2.18.2",
"nodemon": "^1.19.3",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
}
}