-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.44 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
{
"name": "deui-coffee",
"version": "0.1.6",
"scripts": {
"build": "tsc && vite build",
"build-server": "esbuild src/server/index.ts --platform=node --target=node16 --bundle --packages=external",
"dev": "vite --host",
"prettier": "prettier --write src test",
"preview": "vite preview",
"ws": "npm run build-server --silent | cross-env NODE_ENV=development node -",
"start": "conc npm:dev npm:ws",
"test": "jest",
"pkg:build-server": "npm run build-server --silent -- --outdir=dist",
"pkg:build-client": "cross-env NODE_ENV=production npm run build --silent",
"pkg:build": "npm run pkg:build-client && npm run pkg:build-server",
"prepack": "npm run pkg:build && node ./bin/strip-package.js",
"postpack": "mv package.backup.json package.json"
},
"dependencies": {
"@abandonware/noble": "^1.9.2-21",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.8.1",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"buffer": "^6.0.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"esbuild": "^0.17.19",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"immer": "^10.0.1",
"morgan": "^1.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.2.1",
"react-swipeable": "^6.2.1",
"serve-static": "^1.15.0",
"toasterhea": "^1.0.4",
"ws": "^8.13.0",
"zod": "^3.21.4",
"zustand": "^4.3.7"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.7.2",
"@emotion/babel-plugin-jsx-pragmatic": "^0.1.5",
"@types/cors": "^2.8.13",
"@types/debug": "^4.1.8",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.194",
"@types/morgan": "^1.9.4",
"@types/node": "^18.16.18",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-helmet": "^6.1.5",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-react": "^1.3.2",
"babel-plugin-macros": "^3.1.0",
"concurrently": "^8.0.1",
"eslint": "^8.8.0",
"eslint-plugin-react": "^7.28.0",
"jest": "^29.5.0",
"prettier": "2.5.1",
"tailwindcss": "^3.0.24",
"ts-jest": "^29.1.0",
"twin.macro": "^2.8.2",
"typescript": "^5.1.5",
"vite": "^2.7.2"
},
"files": [
"dist/*",
"!dist/.DS_Store"
],
"bin": "./dist/index.js"
}