-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
48
49
50
51
52
53
54
55
56
{
"name": "podopolo-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"start": "ts-node src/index.ts",
"build": "tsc -p .",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts' --timeout 10000"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.1",
"@types/supertest": "^2.0.12",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"mocha": "^10.2.0",
"supertest": "^6.3.3",
"typescript": "^4.9.5"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-multipart-file-parser": "^0.1.2",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.1",
"http-status": "^1.6.2",
"joi": "^17.8.3",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"mongoose": "^6.10.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"pm2": "^5.2.2",
"ts-node": "^10.9.1",
"validator": "^13.9.0",
"winston": "^3.8.2",
"xss-clean": "^0.1.1"
},
"engines": {
"node": ">=16.0.0"
}
}