-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.39 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
{
"name": "uni-portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"lint": "npx eslint --ext .ts,.tsx client/ && npx eslint --ext .ts server/",
"dev": "concurrently \"vite\" \"nodemon ./server/main.ts\"",
"build": "tsc && vite build && node esbuild.js",
"preview": "vite preview"
},
"dependencies": {
"@carbon/icons-react": "^11.16.0",
"@carbon/pictograms-react": "^11.40.0",
"@carbon/react": "1.19.0",
"@uiw/react-md-editor": "^3.20.10",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"canvas-confetti": "^1.6.0",
"cors": "^2.8.5",
"d3": "^5.5.0",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"jsonwebtoken": "^9.0.0",
"leaflet": "^1.9.3",
"moment": "^2.29.4",
"pg": "^8.9.0",
"qrcode.react": "^3.1.0",
"query-string": "^8.1.0",
"react": "^17.0.1",
"react-d3-graph18": "^2.6.6",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-leaflet": "^3.2.5",
"react-moment": "^1.1.3",
"react-qr-reader": "^3.0.0-beta-1",
"react-router-dom": "^6.8.1",
"recoil": "^0.7.6",
"sass": "^1.58.3",
"sequelize": "^6.29.0",
"uuid": "^9.0.0",
"vite-express": "^0.3.1",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/canvas-confetti": "^1.6.0",
"@types/carbon__icons-react": "^11.15.0",
"@types/carbon__pictograms-react": "^11.31.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/pg": "^8.6.6",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-helmet": "^6.1.6",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@vitejs/plugin-react": "^3.1.0",
"concurrently": "^7.6.0",
"esbuild": "^0.17.8",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"nodemon": "^2.0.20",
"prettier": "2.8.4",
"sqlite3": "^5.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^4.1.0"
}
}