forked from hfierros/triangle-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 667 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 667 Bytes
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
{
"name": "triangle-typescript",
"version": "1.0.0",
"description": "Triangle type rest api for Quality assurance",
"main": "app.ts",
"scripts": {
"start" : "tsc && node --unhandled-rejections=strict ./dist/app.js",
"debug" : "export DEBUG=* && npm run start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git"
},
"keywords": [
"qa",
"class"
],
"author": "",
"license": "ISC",
"dependencies": {
"debug": "^4.3.4",
"express": "^4.18.2"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"typescript": "^5.0.2"
}
}