-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "convertnodeservicetotypescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha \"tests/**/*.test.ts\"",
"build": "tsc",
"start": "node index.js",
"start:precompiled": "node ./lib/listener.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevejhiggs/convertNodeServiceToTypescript.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stevejhiggs/convertNodeServiceToTypescript/issues"
},
"homepage": "https://github.com/stevejhiggs/convertNodeServiceToTypescript#readme",
"dependencies": {
"body-parser": "^1.19.0",
"config": "^3.2.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"pino-http": "^4.3.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/chai": "^4.2.4",
"@types/config": "0.0.35",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.5",
"@types/supertest": "^2.0.8",
"chai": "^4.2.0",
"glob": "^7.1.5",
"mocha": "^6.2.2",
"supertest": "^4.0.2",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}