forked from Shopify/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.84 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"private": true,
"type": "module",
"scripts": {
"package": "bin/package.js",
"update-bugsnag": "bin/update-bugsnag.js",
"graph": "nx graph",
"shopify": "nx build cli && node packages/cli/bin/dev.js",
"shopify:run": "node packages/cli/bin/dev.js",
"create-app": "nx build create-app && cross-env SHOPIFY_FLAG_PACKAGE_MANAGER=npm node packages/create-app/bin/dev.js",
"clean": "nx run-many --target=clean --all --skip-nx-cache && nx reset",
"docs:generate": "nx run-many --target=docs:generate --all --skip-nx-cache",
"lint": "nx run-many --target=lint --all --skip-nx-cache",
"lint:affected": "nx affected --target=lint",
"lint:fix": "nx run-many --target=lint:fix --all --skip-nx-cache",
"lint:fix:affected": "nx affected --target=lint:fix",
"test": "nx run-many --target=test --all --skip-nx-cache",
"test:unit": "nx run-many --target=test --all --skip-nx-cache --exclude=features",
"test:features": "pnpm nx run features:test",
"test:affected": "nx affected --target=test",
"test:regenerate-snapshots": "nx build cli && packages/features/snapshots/regenerate.sh",
"type-check": "nx run-many --target=type-check --all --skip-nx-cache",
"type-check:affected": "nx affected --target=type-check",
"build": "nx run-many --target=build --all --skip-nx-cache",
"build:affected": "nx affected --target=build",
"refresh-templates": "nx run-many --target=refresh-templates --all --skip-nx-cache",
"refresh-manifests": "nx run-many --target=refresh-manifests --all --skip-nx-cache && bin/prettify-manifests.js && pnpm refresh-readme",
"changeset-manifests": "changeset version && pnpm install --no-frozen-lockfile && pnpm refresh-manifests && pnpm refresh-readme && pnpm refresh-documentation && bin/update-cli-kit-version.js && pnpm docs:generate",
"refresh-documentation": "nx run-many --target=refresh-documentation --all --skip-nx-cache",
"refresh-readme": "nx run-many --target=refresh-readme --all --skip-nx-cache",
"build-docs": "sh ./bin/docs/build-docs.sh"
},
"devDependencies": {
"@apollo/client": "^3.7.17",
"@babel/core": "^7.23.5",
"@bugsnag/source-maps": "^2.3.1",
"@changesets/cli": "2.26.2",
"@nrwl/tao": "16.7.4",
"@nx/eslint-plugin": "16.8.1",
"@nx/js": "16.8.1",
"@nx/workspace": "16.8.1",
"@octokit/core": "^4.2.4",
"@octokit/rest": "^19.0.13",
"@shopify/eslint-plugin-cli": "file:packages/eslint-plugin-cli",
"@shopify/generate-docs": "^0.13.2",
"@shopify/typescript-configs": "^5.1.0",
"@types/node": "18.19.3",
"@types/rimraf": "^3.0.2",
"@types/tmp": "^0.2.3",
"@typescript-eslint/parser": "^5.62.0",
"ansi-colors": "^4.1.3",
"bugsnag-build-reporter": "^2.0.0",
"commander": "^9.4.0",
"cross-env": "^7.0.3",
"esbuild": "0.19.8",
"eslint": "^8.48.0",
"execa": "^7.2.0",
"fast-glob": "^3.3.1",
"find-up": "^6.3.0",
"fs-extra": "^11.1.0",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"json-stringify-deterministic": "1.0.12",
"liquidjs": "^10.9.2",
"node-fetch": "^3.3.2",
"nx": "16.8.1",
"oclif": "4.4.18",
"octokit-plugin-create-pull-request": "^3.12.2",
"pathe": "1.1.1",
"pin-github-action": "^1.8.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.8.7",
"react": "17.0.2",
"rimraf": "^3.0.2",
"shx": "^0.3.4",
"tempy": "^3.0.0",
"tmp": "^0.2.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "5.2.2"
},
"workspaces": {
"packages": [
"packages/*",
"workspace"
]
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "all",
"semi": false,
"printWidth": 120
},
"version": "0.0.0",
"resolutions": {
"@types/react": "17.0.2",
"vite": "4.4.9",
"@oclif/core": "3.19.6"
}
}