forked from barrel/shopify-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "@barrelny/shopify",
"version": "0.0.0",
"workspaces": [
"packages/*",
"themes/*"
],
"scripts": {
"build": "turbo run build --filter=vite-plugin-*",
"dev": "turbo run dev --filter=vite-plugin-* --parallel",
"seed:dev": "cd themes/seed-theme && npm run dev",
"seed:dev:sync": "cd themes/seed-theme && npm run dev:sync",
"lint": "turbo run lint",
"change:add": "changeset add",
"change:version": "changeset version",
"change:publish": "npm run build && changeset publish",
"build:docs": "cd packages/vite-shopify-docs && npm run build"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@changesets/cli": "^2.23.0",
"cross-env": "^7.0.3",
"tsup": "^6.1.2",
"turbo": "^1.3.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@pnpm/types": "^8.3.0",
"@types/debug": "^4.1.7",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.12.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"vite": "^3.0.0"
},
"packageManager": "[email protected]"
}