-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
78 lines (78 loc) · 2.24 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nodejs-rest",
"version": "1.0.0",
"description": "nodejs backend template based on Express",
"main": "dist",
"scripts": {
"start": "NODE_ENV=production node dist/src/server.js",
"build": "tsc",
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/server.ts",
"seed:message": "ts-node prisma/message_seed.ts",
"seed": "ts-node prisma/total_seed.ts",
"test": "jest --detectOpenHandles"
},
"keywords": [
"Software Engineering"
],
"author": "Junhao Shen <[email protected]>",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.18",
"@mui/x-data-grid": "^6.18.1",
"@prisma/client": "^5.11.0",
"@types/bcrypt": "^5.0.0",
"@types/nodemailer": "^6.4.9",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"db": "^4.0.1",
"dotenv": "^16.3.1",
"expess": "^0.0.1-security",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"lexic": "^0.0.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.3.3",
"nodemailer": "^6.9.5",
"prettier": "^2.8.8",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@faker-js/faker": "^8.2.0",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/jsonwebtoken": "^9.0.3",
"@types/multer": "^1.4.8",
"@types/node": "^20.2.5",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.52.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jest-formatting": "^3.1.0",
"jest": "^29.5.0",
"jest-mock-express": "^0.1.1",
"jest-module-name-mapper": "^0.1.5",
"module-alias": "^2.2.3",
"node-mocks-http": "^1.13.0",
"nodemon": "^2.0.22",
"prisma": "^5.4.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"prisma": {
"seed": "node prisma/seed.ts",
"seed_message": "ts-node prisma/message_seed.ts",
"seed_taApp": "node prisma/seed_TA_Application.ts"
},
"_moduleAliases": {
"prisma": "./dist/prisma",
"middleware": "./dist/middleware",
"utils": "./dist/utils"
}
}