-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1011 Bytes
/
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": "swm-db-layer-v2",
"version": "2.0.0",
"scripts": {
"start": "nodemon",
"build": "tsc",
"start:production": "node ./dist/server.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "yarn lint --fix"
},
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"mongoose": "^5.10.6",
"mongoose-auto-increment": "^5.0.1",
"morgan": "^1.10.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/mongoose": "^5.7.36",
"@types/mongoose-auto-increment": "^5.0.33",
"@types/morgan": "^1.9.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"typescript": "3.9.7"
}
}