-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.96 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
{
"private": true,
"version": "0.7.2",
"scripts": {
"test": "jest",
"dev": "nodemon",
"dev2": "ts-node --project tsconfig.server.json src/server/index.ts",
"build:server": "tsc --project tsconfig.server.json",
"build:next": "next build",
"build": "npm run build:next && npm run build:server",
"start": "node dist/server/index.js",
"lint": "tslint -p tsconfig.json",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"studio": "npx prisma studio"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@mantine/core": "^5.9.5",
"@mantine/hooks": "^5.9.5",
"@prisma/client": "^4.6.1",
"@types/adm-zip": "^0.5.0",
"@types/decompress": "^4.2.4",
"@types/express": "^4.17.13",
"@types/formidable": "^2.0.4",
"adm-zip": "^0.5.10",
"axios": "^0.26.1",
"cookie": "^0.5.0",
"cron": "^2.1.0",
"dayjs": "^1.11.0",
"decompress": "^4.2.1",
"express": "^4.17.3",
"form-data": "^4.0.0",
"formidable": "^2.0.1",
"fs": "^0.0.1-security",
"multer": "^1.4.4",
"next": "latest",
"next-connect": "^0.12.2",
"nodemon": "^2.0.20",
"nprogress": "^0.2.0",
"path": "^0.12.7",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"sharp": "^0.31.1",
"socket.io": "^4.5.0",
"socket.io-client": "^4.5.0",
"tabler-icons-react": "^1.42.0",
"ts-node": "^10.7.0",
"uuid": "^8.3.2",
"webpack-merge": "^5.8.0",
"zip": "^1.2.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.1.3",
"@tailwindcss/typography": "^0.5.2",
"@types/cron": "^2.0.0",
"@types/jest": "^29.2.3",
"@types/multer": "^1.4.7",
"@types/node": "^12.12.21",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^17.0.1",
"@types/uuid": "^8.3.4",
"jest": "^29.3.1",
"postcss-preset-env": "^7.4.2",
"prettier": "^2.7.1",
"prisma": "^4.6.1",
"tailwindcss": "^3.0.23",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.2"
}
}