-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "quiz-app",
"version": "0.99.99",
"scripts": {
"f": "npx vite",
"b": "npx nodemon server/index.ts",
"b:build": "npx rollup -c rollup.server.config.js",
"simulation": "npx nodemon server/test.ts",
"seeder": "npx ts-node server/seeder.ts",
"seed": "npx ts-node server/seeder.ts",
"build": "npx vite build",
"f:build": "npx vite build",
"preview": "npx vite preview",
"tw": "npx tailwindcss -i src/tailwind.css -o src/tailwind.build.css"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-regular-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.17",
"@types/express": "^4.17.13",
"chalk": "^2.4.2",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"lodash": "^4.17.21",
"mongoose": "^6.4.3",
"password-generator": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"react-use-clipboard": "^1.0.7",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.1",
"rollup-plugin-copy": "^3.4.0",
"short-unique-id": "^4.4.4",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"tailwindcss": "^3.0.15",
"zod": "^3.17.3"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.178",
"@types/mongoose": "^5.11.97",
"@vitejs/plugin-react": "^1.0.7",
"gh-pages": "^4.0.0",
"js-yaml": "^4.1.0",
"nodemon": "^2.0.18",
"rollup": "^2.77.2",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-ts": "^3.0.2",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"vite": "^2.7.2"
}
}