-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
71 lines (71 loc) · 2.16 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
67
68
69
70
71
{
"name": "shopify-app-js--root",
"version": "1.0.0",
"license": "UNLICENSED",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"test": "turbo run test",
"test:ci": "CI=true turbo run test:ci --filter='!./packages/apps/session-storage/*'",
"test:ci_sessions": "CI=true turbo run test",
"lint": "CI=true turbo lint",
"release": "turbo build && changeset publish",
"dev": "turbo dev --no-cache --continue",
"clean": "turbo clean",
"changeset": "changeset",
"version-packages": "changeset version"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@changesets/cli": "^2.27.9",
"@cloudflare/workers-types": "^4.20241112.0",
"@jest/types": "^29.6.3",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-eslint": "^9.0.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^12.1.1",
"@shopify/babel-preset": "^25.0.0",
"@shopify/eslint-plugin": "^45.0.0",
"@shopify/prettier-config": "^1.1.2",
"@shopify/typescript-configs": "^5.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/supertest": "^6.0.2",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-runner-eslint": "^2.2.1",
"prettier": "^3.3.3",
"rimraf": "^5.0.7",
"rollup": "^4.26.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"supertest": "^7.0.0",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"turbo": "^2.2.3",
"typescript": "5.6.3"
},
"dependencies": {},
"resolutions": {
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"node-fetch": "^2.6.7",
"ts-jest": "^29.1.3"
},
"overrides": {
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"node-fetch": "^2.6.7",
"ts-jest": "^29.1.3"
}
}