-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 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
42
43
44
45
46
47
48
{
"name": "stalkcd_characteristics",
"version": "1.0.0",
"scripts": {
"start": "node dist/index.js",
"predev": "npm run swagger",
"prebuild": "npm run swagger",
"build": "tsc",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec\"",
"swagger": "tsoa spec"
},
"main": "dist/stalk-cd.js",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/file-saver": "^2.0.5",
"@types/morgan": "^1.9.4",
"@types/node": "^20.3.1",
"@types/node-fetch": "^2.6.1",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^8.2.0",
"mongodb": "^5.6.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@types/express": "^4.17.17",
"commander": "^9.2.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"file-saver": "^2.0.5",
"mongodb": "^5.6.0",
"morgan": "^1.10.0",
"node": "^20.2.0",
"node-fetch": "^2.6.7",
"npm": "^8.12.1",
"swagger-ui-express": "^4.6.3",
"tsoa": "^5.1.1"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/index.ts"
}
}