-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "nodejs-typescript",
"version": "0.1.0",
"description": "",
"repository": {
"type": "git",
"url": ""
},
"author": "Riskified",
"scripts": {
"compile": "tsc",
"start": "npm run serve",
"serve": "ts-node src/server.ts",
"watch-node": "nodemon"
},
"dependencies": {
"async": "^3.0.1",
"axios": "^0.21.1",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-validator": "^6.0.1",
"helmet": "^3.20.1",
"lodash": "^4.17.20",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"winston": "^2.4.2"
},
"devDependencies": {
"@types/async": "^3.0.0",
"@types/bluebird": "^3.5.27",
"@types/body-parser": "^1.17.0",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.17.0",
"@types/helmet": "0.0.44",
"@types/lodash": "^4.14.134",
"@types/morgan": "^1.7.35",
"@types/node": "^12.0.10",
"@types/request": "^2.48.1",
"@types/winston": "^2.3.9",
"eslint": "^6.2.2",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}