-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.36 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
79
80
81
{
"name": "griefbuddy",
"version": "1.0.0",
"description": "",
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && webpack",
"start": "npx ts-node-dev server/index.ts",
"prodBuild": "rimraf dist && tsc -p ./tsconfig-server.json && webpack",
"prod": "node ./dist/server/index.js",
"postinstall": "node-prune"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/autosize": "^4.0.3",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.5",
"@types/react-big-calendar": "^1.8.9",
"@types/react-dom": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"css-loader": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.6.0",
"prisma": "^5.12.1",
"rimraf": "^5.0.5",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.4",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@prisma/client": "^5.12.1",
"@types/cors": "^2.8.17",
"@types/express-session": "^1.18.0",
"@types/passport": "^1.0.16",
"@types/passport-google-oauth20": "^2.0.14",
"@types/react": "^18.2.74",
"autosize": "^6.0.1",
"axios": "^1.6.8",
"cors": "^2.8.5",
"date-arithmetic": "^4.1.0",
"dayjs": "^1.11.10",
"dom-helpers": "^5.2.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"lodash": "^4.17.21",
"node-prune": "^1.0.2",
"openai": "^4.34.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"puppeteer": "^22.6.4",
"react": "^18.2.0",
"react-big-calendar": "^1.11.3",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-router-dom": "^6.22.3",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"ts-node": "^10.9.2"
}
}