This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.05 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
{
"name": "@mytiki/shopify-web",
"version": "0.0.1",
"main": "dist/_worker.js",
"type": "module",
"scripts": {
"build-worker": "tsc --project tsconfig.build.json",
"build-ui": "NODE_ENV=production webpack --mode production",
"build": "npm run build-ui && npm run build-worker",
"dev": "npm run build && npx wrangler pages dev dist"
},
"dependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@cloudflare/workers-types": "^4.20230518.0",
"@mytiki/worker-utils-ts": "^0.2.0",
"@shopify/app-bridge": "^3.1.0",
"@shopify/app-bridge-react": "^3.1.0",
"@shopify/app-bridge-utils": "^3.1.0",
"@shopify/discount-app-components": "^1.0.7",
"@shopify/polaris": "^11.2.2",
"@shopify/react-form": "^2.5.0",
"@shopify/react-i18n": "^7.8.0",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/serve-static": "^1.15.2",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"babel-jest": "^29.5.0",
"css-loader": "^6.8.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"gql-query-builder": "^3.8.0",
"html-webpack-plugin": "^5.5.3",
"itty-router": "^4.0.9",
"jest": "^29.5.0",
"jest-environment-miniflare": "^2.14.0",
"jest-junit": "^16.0.0",
"mini-css-extract-plugin": "^2.7.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.15.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.4",
"typescript": "^5.1.3",
"uuid": "^9.0.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"wrangler": "^3.1.1"
},
"private": true,
"types": "dist/worker.d.ts",
"files": [
"dist/"
]
}