-
-
Notifications
You must be signed in to change notification settings - Fork 654
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.84 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.84 KB
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
{
"name": "shepherd-monorepo",
"private": "true",
"description": "The monorepo for Shepherd",
"repository": {
"type": "git",
"url": "git+https://github.com/shipshapecode/shepherd.git"
},
"license": "AGPL-3.0",
"scripts": {
"build": "pnpm -F shepherd.js build && pnpm -F '!shepherd.js' -F !landing -F !shepherd-docs build",
"cypress:install": "pnpm -F shepherd.js cypress:install",
"dev": "pnpm watch",
"lint": "pnpm -F '*' lint",
"lint:fix": "pnpm -F '*' lint:fix",
"lint:js": "pnpm -F '*' lint:js",
"lint:prettier": "pnpm -F '*' lint:prettier",
"lint:prettier:fix": "pnpm -F '*' lint:prettier:fix",
"prepare": "pnpm -F shepherd.js build",
"start": "pnpm watch",
"test:ci": "pnpm build && pnpm -F shepherd.js test:ci",
"test:cy:ci": "pnpm -F shepherd.js test:cy:ci",
"test:cy:watch": "pnpm -F shepherd.js test:cy:watch",
"test:unit:ci": "pnpm -F shepherd.js test:unit:ci",
"test:unit:watch": "pnpm -F shepherd.js test:unit:watch",
"types:check": "pnpm -F shepherd.js types:check",
"view-coverage": "pnpm -F shepherd.js view-coverage",
"watch": "pnpm -F shepherd.js watch"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@eslint/js": "^9.39.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"autoprefixer": "^10.4.27",
"concurrently": "^9.2.1",
"del": "^7.1.0",
"eslint": "^9.39.3",
"postcss": "^8.5.6",
"prettier": "3.8.1",
"prettier-plugin-astro": "^0.14.1",
"release-plan": "^0.17.4",
"replace": "^1.2.2",
"shepherd.js": "workspace:*",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">= 20"
},
"authors": [
"Robbie Wagner <rwwagner90@gmail.com>",
"Chuck Carpenter <chuck@shipshape.io>"
]
}