-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.94 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.94 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
67
68
69
70
71
72
73
74
75
76
{
"name": "mix",
"version": "0.0.1",
"description": "mix",
"private": true,
"main": "index.js",
"type": "module",
"scripts": {
"dev": "DEBUG=app:* next dev",
"start": "next start",
"build": "next build",
"db:seed": "tsx scripts/seed.ts",
"lint": "next lint",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky"
},
"dependencies": {
"@ant-design/cssinjs": "^1.23.0",
"@ant-design/icons": "^5.5.1",
"@auth/core": "^0.34.2",
"@casl/ability": "^6.5.0",
"@prisma/client": "5.7.0",
"@reduxjs/toolkit": "^2.0.1",
"@sequelize/core": "^7.0.0-alpha.29",
"antd": "^5.22.1",
"axios": "^1.6.2",
"classnames": "^2.3.2",
"dayjs": "^1.11.10",
"debug": "^4.3.4",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"log4js": "^6.9.1",
"next": "^15.0.3",
"next-auth": "^4.24.10",
"nodemailer": "^6.9.7",
"otplib": "^12.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"sequelize": "^6.33.0",
"sqlite3": "^5.1.6",
"umzug": "^3.8.2",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.14.202",
"@types/node": "20.10.0",
"@types/nodemailer": "^6.4.14",
"@types/react": "18.2.38",
"@types/react-dom": "^18.2.17",
"@types/uuid": "^9.0.7",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "3.0.8",
"eslint-config-sobird": "^0.2.16",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"sass": "^1.85.1",
"tsx": "^4.19.3",
"typescript": "^5.6.3",
"url-loader": "^4.1.1",
"vitest": "^3.0.8"
},
"keywords": [
"mix"
],
"author": "sobird",
"license": "MIT"
}