-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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
{
"name": "shopify-app-node",
"private": true,
"scripts": {
"build": "npm run build:client",
"build:client": "vite build --outDir dist/client",
"debug": "node --inspect-brk server/index.js",
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch ./server",
"prepare": "husky install",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=production node server/index.js",
"start": "npm run serve",
"test": "vitest --reporter=verbose"
},
"type": "module",
"engines": {
"node": ">=16.13.0"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@shopify/app-bridge": "^2.0.22",
"@shopify/app-bridge-react": "^2.0.24",
"@shopify/app-bridge-utils": "^2.0.23",
"@shopify/polaris": "^9.2.2",
"@shopify/shopify-api": "^3.0.0",
"@vitejs/plugin-react": "1.2.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"graphql": "^16.3.0",
"qrcode.react": "^3.0.2",
"react": "^17.0.2",
"react-awesome-lightbox": "^1.8.1",
"react-beautiful-dnd": "^13.1.0",
"react-code-blocks": "^0.0.9-0",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"react-form-stepper": "^2.0.1",
"react-image-lightbox": "^5.1.4",
"react-qr-code": "^2.0.7",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"serve-static": "^1.14.1",
"tawkto-react": "^3.0.1",
"vite": "^2.9.1"
},
"devDependencies": {
"husky": "^7.0.4",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"supertest": "^6.2.2",
"vitest": "^0.9.2"
}
}