-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.05 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
{
"name": "sciu-teg",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon",
"build:server": "tsc --project tsconfig.server.json",
"build:next": "next build",
"build": "npm run build:next && npm run build:server",
"start:prod": "NODE_ENV=production node dist/server/index.js",
"start:win:prod": "set \"NODE_ENV=production\" & node dist/server/index.js",
"lint": "next lint",
"prettier": "prettier --write ."
},
"dependencies": {
"@chakra-ui/react": "2.2.8",
"@emotion/react": "11.10.0",
"@emotion/styled": "11.10.0",
"@hookform/resolvers": "2.9.8",
"@playwright/test": "1.28.0",
"@prisma/client": "5.1.0",
"chakra-react-select": "4.2.2",
"chart.js": "4.0.1",
"chartjs-plugin-autocolors": "0.0.7",
"cronstrue": "2.20.0",
"crypto-js": "4.1.1",
"dayjs": "1.11.5",
"framer-motion": "6.5.1",
"iron-session": "6.2.1",
"just-debounce": "1.1.0",
"lodash": "4.17.21",
"next": "13.0.5",
"node-cron": "3.0.2",
"nodemailer": "6.8.0",
"nodemon": "2.0.20",
"react": "18.2.0",
"react-chartjs-2": "5.0.1",
"react-data-grid": "7.0.0-beta.19",
"react-dom": "18.2.0",
"react-hook-form": "7.34.2",
"react-icons": "4.4.0",
"swr": "1.3.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.19.0/xlsx-0.19.0.tgz",
"zod": "3.18.0"
},
"devDependencies": {
"@types/crypto-js": "4.1.1",
"@types/node": "18.7.7",
"@types/node-cron": "3.0.6",
"@types/nodemailer": "6.4.6",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "8.5.0",
"prettier": "2.7.1",
"prisma": "5.1.0",
"ts-node": "10.9.1",
"typescript": "4.7.4",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.19.0/xlsx-0.19.0.tgz"
},
"prisma": {
"seed": "node dist/prisma/seed.js",
"seed:dev": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}