-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.42 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.42 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
{
"name": "autoquest",
"version": "0.0.2",
"description": "Backend for Auto Quest",
"main": "app.js",
"scripts": {
"build": "tsc --project ./",
"lint": "eslint . && prettier . --check && echo 'No linting or formatting errors ✔'",
"format": "eslint . --fix && prettier . --write && echo 'Done ✎'",
"start:dev": "nodemon ./src/app.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-openapi-validator": "^4.7.1",
"express-session": "^1.17.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.10.9",
"morgan": "^1.9.1",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@types/config": "0.0.36",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.36",
"@types/morgan": "^1.9.1",
"@types/node": "^14.14.0",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}