-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "shared-canvas",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon server/index.ts",
"dev:client": "ts-node server/index.ts",
"build:server": "tsc --project tsconfig.server.json",
"build:next": "next build",
"build": "npm-run-all build:*",
"start": "NODE_ENV=production node build/index.js",
"lint": "next lint"
},
"dependencies": {
"@nextui-org/react": "2.2.9",
"clsx": "2.1.0",
"express": "4.18.2",
"framer-motion": "7.2.1",
"next": "14.0.4",
"next-pwa": "^5.6.0",
"nodemon": "3.0.2",
"react": "18",
"react-colorful": "5.6.1",
"react-dom": "18",
"react-icons": "4.12.0",
"react-image-file-resizer": "0.4.8",
"react-toastify": "9.1.3",
"react-use": "17.4.2",
"recoil": "0.7.7",
"socket.io": "4.7.2",
"socket.io-client": "4.7.2",
"ts-node": "10.9.2",
"uuid": "9.0.1"
},
"devDependencies": {
"@types/express": "4.17.21",
"@types/node": "20",
"@types/react": "18",
"@types/react-dom": "18",
"@types/uuid": "9.0.7",
"autoprefixer": "10.0.1",
"eslint": "8",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-tailwindcss": "3.13.0",
"eslint-plugin-unused-imports": "3.0.0",
"npm-run-all": "4.1.5",
"postcss": "8",
"prettier": "3.1.1",
"prettier-plugin-tailwindcss": "0.5.10",
"tailwindcss": "3.3.2",
"typescript": "5"
}
}