-
-
Notifications
You must be signed in to change notification settings - Fork 647
/
package.json
57 lines (57 loc) · 1.83 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
{
"name": "shepherd-monorepo",
"private": "true",
"version": "12.0.0-alpha.13",
"description": "The monorepo for Shepherd",
"repository": {
"type": "git",
"url": "git+https://github.com/shepherd-pro/shepherd.git"
},
"license": "AGPL-3.0",
"authors": [
"Robbie Wagner <[email protected]>",
"Chuck Carpenter <[email protected]>"
],
"scripts": {
"prepare": "pnpm -F shepherd.js build",
"build": "pnpm -F shepherd.js build && pnpm -F '!shepherd.js' -F !landing -F !shepherd-docs build",
"cypress:install": "pnpm -F 'cypress-tests' cypress:install",
"dev": "pnpm watch",
"docs": "node_modules/.bin/jsdoc -c .jsdoc.js --verbose",
"lint": "pnpm -F '*' lint",
"lint:fix": "pnpm -F '*' lint:fix",
"lint:js": "pnpm -F '*' lint:js",
"start": "pnpm watch",
"test:ci": "pnpm build && pnpm -F '*' test:ci",
"test:cy:watch": "pnpm -F cypress-tests test:watch",
"test:unit:watch": "pnpm -F unit-tests test:watch",
"types:check": "pnpm -F shepherd.js types:check",
"view-coverage": "pnpm -F unit-tests view-coverage",
"watch": "pnpm -F shepherd.js watch"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.25.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.19",
"concurrently": "^9.0.1",
"del": "^7.1.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-svelte": "^2.39.0",
"postcss": "^8.4.38",
"prettier": "3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.2.2",
"release-plan": "^0.9.0",
"replace": "^1.2.2",
"shepherd.js": "workspace:*",
"svelte": "^4.2.19",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": "18.* || >= 20"
}
}