-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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": "captain",
"version": "1.2.0",
"description": "Captain America, your marvel's favorite",
"main": "dist/app.js",
"scripts": {
"tsc": "tsc",
"build": "npm run tsc",
"dev": "nodemon",
"start": "npm run build && node dist/app.js",
"lint": "eslint src/app.ts src/**/*.ts",
"test": "jest"
},
"author": "Corentin Chardeau",
"license": "MIT",
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.6.0",
"eslint-plugin-import": "^2.18.2",
"nodemon": "^1.19.4",
"jest": "^24.9.0",
"ts-jest": "^24.1.0"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status-codes": "^1.4.0",
"lodash": "^4.17.19",
"mongoose": "^5.7.7",
"request-ip": "^2.1.3",
"ts-node": "^8.4.1",
"typescript": "^3.6.4",
"@types/axios": "^0.14.0",
"@types/config": "0.0.35",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.22",
"@types/lodash": "^4.14.144",
"@types/mongoose": "^5.5.26",
"@types/node": "^12.12.0",
"@types/request-ip": "0.0.34"
}
}