-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.63 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
57
58
59
60
61
62
63
64
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node ./dist/main.js",
"dev": "npx tsc && node ./dist/main.js",
"test": "npx jest",
"factory:admin": "npx tsc && node ./dist/factory/admin.js",
"factory:category": "npx tsc && node ./dist/factory/category.js",
"lint": "eslint . --ext=.ts",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.10.1",
"@types/cli-table": "^0.3.0",
"@types/express-list-endpoints": "^6.0.0",
"@types/socket.io": "^3.0.2",
"@types/supertest": "^2.0.12",
"argon2": "^0.28.5",
"axios": "^1.3.4",
"cli-table": "^0.3.11",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.17.3",
"express-list-endpoints": "^6.0.0",
"express-rate-limit": "^6.7.0",
"express-recaptcha": "^5.1.0",
"fs-jetpack": "^4.3.1",
"hcaptcha": "^0.1.1",
"helmet": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"prettier": "^2.8.3",
"socket.io": "^4.5.0",
"winston": "^3.6.0"
},
"devDependencies": {
"@faker-js/faker": "^6.1.1",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^27.5.1",
"prisma": "^4.10.1",
"superagent": "^7.1.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}