-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.03 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.03 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "bakery",
"version": "2.0.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@google-cloud/firestore": "^7.11.1",
"@react-three/drei": "^9.99.0",
"@react-three/fiber": "^8.15.16",
"@sendgrid/mail": "^8.1.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^13.5.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"firebase": "^11.6.0",
"firebase-admin": "^13.4.0",
"jose": "^5.9.6",
"multer": "^2.0.1",
"node-fetch": "^2.7.0",
"nodemailer": "^7.0.3",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.5",
"react-icons": "^5.5.0",
"react-quill": "^2.0.0",
"react-router-dom": "^7.5.0",
"react-scripts": "5.0.1",
"three": "^0.161.0",
"web-vitals": "^2.1.4",
"zcrmsdk": "^1.1.0"
},
"scripts": {
"start": "cross-env PORT=3000 craco start",
"start:local": "cross-env PORT=3000 craco start",
"start:live-api": "cross-env PORT=3000 REACT_APP_RUNTIME_ENV=live craco start",
"server": "node server.js",
"server:local": "node server.js",
"free-port-5000": "npx --yes kill-port 5000",
"dev": "concurrently \"npm run server:local\" \"npm run start:local\"",
"dev:local": "concurrently \"npm run server:local\" \"npm run start:local\"",
"build": "craco build",
"build:live": "craco build",
"build:live:debug": "cross-env REACT_APP_ENABLE_CONSOLE_LOGS=true craco build",
"build:local": "cross-env REACT_APP_RUNTIME_ENV=local REACT_APP_API_BASE_URL=http://localhost:5000 REACT_APP_ENABLE_CONSOLE_LOGS=true craco build",
"build:pages": "cross-env REACT_APP_RUNTIME_ENV=live REACT_APP_API_RELATIVE=1 craco build",
"pages:dev": "npm run build:pages && wrangler pages dev build",
"pages:deploy": "npm run build:pages && wrangler pages deploy build",
"pages:secrets:push": "wrangler pages secret bulk .dev.vars",
"pages:secrets:list": "wrangler pages secret list",
"firestore:schema:dump": "node scripts/dump-firestore-schema.js",
"css:sync-layout-narrow-mobile-store": "node scripts/duplicate-layout-narrow-mobile-store.mjs",
"typecheck:functions": "tsc -p functions/tsconfig.json --noEmit",
"test": "craco test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"overrides": {
"typescript": "^5.7.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:5000",
"devDependencies": {
"@cloudflare/workers-types": "^4.20241127.0",
"@craco/craco": "^7.1.0",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"typescript": "^5.7.2",
"wrangler": "^3.99.0"
}
}