-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.88 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "entity-api",
"version": "2.0.0",
"private": true,
"scripts": {
"build": "cross-env NODE_ENV=production tsc",
"test": "cross-env NODE_ENV=test jest --detectOpenHandles",
"start": "ts-node-dev src/index.ts",
"dev": "cross-env NODE_ENV=development nodemon --exec npm start",
"prod": "cross-env NODE_ENV=production nodemon --exec npm start"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"@types/express": "^4.17.17",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.4.6",
"address": "^1.2.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^7.4.3",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"socket.io": "^4.5.4",
"socket.io-events": "^0.4.6",
"socket.io-logger": "^0.0.2",
"ts-node-dev": "^2.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/socket.io": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.1.2",
"nodemon": "^2.0.15",
"prettier": "^3.0.1",
"supertest": "^6.3.0",
"typescript": "^5.1.6"
}
}