-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.18 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
{
"name": "FoodStreams",
"version": "1.0.0",
"description": "Restaurant Display System for small dine-in restaurants",
"main": "/",
"repository": "q",
"author": "Calvin C. Chong",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"start": "webpack --mode=development",
"build": "webpack --mode=production",
"dev": "webpack serve --open",
"startserverd": "nodemon server/index.js",
"tail": "npx tailwindcss -i ./src/styles/main.css -o ./public/output.css --watch",
"prod": "npx tailwindcss -i ./src/styles/main.css -o ./public/output.css && webpack --config webpack.prod.js && node server/index.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@hello-pangea/dnd": "^16.2.0",
"@socket.io/postgres-adapter": "^0.3.0",
"axios": "^1.2.2",
"eslint": "^8.33.0",
"eslint-plugin-react": "^7.32.2",
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"prettier": "^2.8.3",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-router": "^6.6.2",
"react-router-dom": "^6.6.2",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@storybook/addon-essentials": "^7.4.5",
"@storybook/addon-interactions": "^7.4.5",
"@storybook/addon-links": "^7.4.5",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.5",
"@storybook/react": "^7.4.5",
"@storybook/react-webpack5": "^7.4.5",
"@storybook/testing-library": "^0.2.1",
"@types/node": "^20.7.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.8.1",
"eslint-plugin-storybook": "^0.6.14",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"storybook": "^7.4.5",
"style-loader": "^3.3.1",
"typescript": "^5.2.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}