-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.71 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
{
"name": "shopify-app-node",
"private": true,
"version": "1.0.0",
"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",
"prisma:migrate": "npx prisma migrate dev",
"prisma:seed": "npx prisma db seed",
"prisma:reset": "npx prisma migrate reset"
},
"prisma": {
"seed": "node ./server/prisma/seed.js"
},
"type": "module",
"engines": {
"node": ">=16.13.0"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@prisma/client": "^4.2.1",
"@shopify/app-bridge": "^2.0.22",
"@shopify/app-bridge-react": "^2.0.26",
"@shopify/app-bridge-utils": "^2.0.26",
"@shopify/polaris": "^9.2.2",
"@shopify/shopify-api": "^4.0.0",
"@vitejs/plugin-react": "1.3.2",
"axios": "^0.27.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"cryptr": "^6.0.3",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"graphql": "^16.5.0",
"morgan": "^1.10.0",
"nanoid": "^4.0.0",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"serve-static": "^1.14.1",
"uuidv4": "^6.2.13",
"vite": "^2.9.8"
},
"devDependencies": {
"husky": "^7.0.4",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"prisma": "^4.2.1",
"supertest": "^6.2.3",
"vitest": "^0.10.5"
}
}