forked from Shopify/shopify-app-template-node
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "shopify-app-template-typescript",
"description": "Shopify App Template (Node) with TypeScript",
"author": "Batyr <dev@batyr.io>",
"homepage": "https://github.com/kanzitelli/shopify-app-template-typescript",
"private": true,
"scripts": {
"build": "tsc && 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.ts --watch ./server",
"prepare": "husky install",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=production node dist/server/index.js",
"start": "npm run serve",
"test": "vitest --reporter=verbose"
},
"type": "module",
"license": "UNLICENSED",
"engines": {
"node": ">=16.13.0"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@shopify/app-bridge": "^2.0.22",
"@shopify/app-bridge-react": "^2.0.26",
"@shopify/app-bridge-utils": "^2.0.26",
"@shopify/polaris": "^9.14.1",
"@shopify/shopify-api": "^3.0.0",
"@vitejs/plugin-react": "1.3.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"graphql": "^16.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"serve-static": "^1.14.1",
"vite": "^2.9.8"
},
"devDependencies": {
"@types/express": "^4.17.13",
"husky": "^7.0.4",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"supertest": "^6.2.3",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"vitest": "^0.10.5"
},
"keywords": [
"shopify",
"shopify-app",
"shopify-embedded-app",
"shopify-app-template",
"shopify-app-typescript"
]
}