-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.97 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.97 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "motion-core-monorepo",
"packageManager": "pnpm@10.33.3",
"private": true,
"type": "module",
"scripts": {
"nx": "nx",
"build": "nx run web:build",
"build:docs": "nx run web:build",
"dev": "nx run web:dev",
"deploy:web": "nx run web:deploy",
"check": "nx run web:check",
"docs:manifest": "nx run web:registry",
"docs:dev": "nx run web:dev",
"docs:build": "nx run web:build",
"docs:preview": "nx run web:preview",
"docs:check": "nx run web:check",
"registry:build": "nx run web:registry",
"workspace:bootstrap": "nx run web:registry && nx run motion-core-cli:check",
"cli:check": "nx run motion-core-cli:check",
"cli:test": "nx run motion-core-cli:test",
"cli:build": "nx run motion-core-cli:build",
"cli:build:release": "nx run motion-core-cli:build-release",
"cli:dist": "nx run motion-core-cli:dist",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"navigation:check": "tsx scripts/validate-navigation.ts",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@nxrs/cargo": "^0.6.2",
"@types/node": "^25.3.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-svelte": "^3.15.0",
"globals": "^15.15.0",
"husky": "^9.1.7",
"nx": "^22.5.2",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte-eslint-parser": "^1.4.1",
"typescript-eslint": "^8.56.0",
"svelte-check": "^4.4.3",
"tsx": "^4.20.6"
},
"lint-staged": {
"*.{js,ts,svelte}": [
"eslint --fix",
"prettier --write"
],
"packages/motion-core/src/lib/components/**/component.json": [
"tsx scripts/validate-registry.ts",
"tsx scripts/validate-navigation.ts"
],
"packages/motion-core/src/lib/components/**/*.{svelte,ts,js}": [
"tsx scripts/validate-registry.ts"
],
"apps/web/src/lib/config/navigation.ts": [
"tsx scripts/validate-navigation.ts"
]
},
"dependencies": {
"rehype-slug": "^6.0.0"
}
}