-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"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",
"lint": "turbo run lint",
"change:add": "changeset add",
"change:version": "changeset version",
"change:publish": "changeset publish"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"turbo": "latest"
},
"devDependencies": {
"@changesets/cli": "^2.23.0",
"@types/debug": "^4.1.7",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.0",
"cross-env": "^7.0.3",
"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",
"rollup": "^2.75.6",
"tsup": "^6.1.2",
"typescript": "^4.7.3"
},
"packageManager": "[email protected]"
}