-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "collabio",
"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/server/index.js",
"lint": "next lint"
},
"dependencies": {
"express": "^4.17.3",
"framer-motion": "^6.3.3",
"next": "latest",
"react": "^17.0.2",
"react-colorful": "^5.5.1",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-image-file-resizer": "^0.4.8",
"react-toastify": "^9.0.3",
"react-use": "^17.3.2",
"recoil": "^0.7.3-alpha.2",
"socket.io": "^4.5.0",
"socket.io-client": "^4.5.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "17.0.4",
"@types/react": "17.0.38",
"@types/react-dom": "^18.0.4",
"@types/uuid": "^8.3.4",
"autoprefixer": "^10.4.0",
"eslint": "8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-next": "^12.1.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"prettier": "^2.6.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.0.7",
"typescript": "4.5.4"
}
}