-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "apap-server",
"version": "1.0.0",
"description": "",
"author": "Dan Selman",
"license": "Apache-2",
"keywords": [],
"scripts": {
"postinstall": "npm run build",
"build": "tsc",
"watch-build": "tsc -w",
"start": "node dist/index.js",
"watch-start": "nodemon --delay 2 -w dist/ -x 'npm run start'",
"dev": "concurrently -k -p '[{name}]' -n 'typescript,api' -c 'yellow.bold,cyan.bold' npm:watch-build npm:watch-start",
"lint": "tslint --format prose --project .",
"test": "jest"
},
"dependencies": {
"express": "^4.16.4",
"morgan": "^1.9.1",
"openapi-backend": "^5.2.0",
"source-map-support": "^0.5.10"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^29.2.5",
"@types/morgan": "^1.7.35",
"@types/node": "^10.12.26",
"axios": "^0.21.1",
"concurrently": "^6.2.0",
"jest": "^29.3.1",
"nodemon": "^1.18.10",
"ts-jest": "^29.0.3",
"tslint": "^5.12.1",
"typescript": "^4.3.2",
"wait-on": "^3.2.0"
}
}