forked from kinematic-lab/kinematic-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "kinematic-lab",
"version": "0.0.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/kinematic-lab/kinematic-lab.git"
},
"workspaces": [
"apps/*",
"packages/*"
],
"author": {
"name": "Aske Kjøller Lange",
"email": "[email protected]"
},
"engines": {
"node": ">=20.0.0 <21.0.0",
"pnpm": ">=8.0.0 <9.0.0"
},
"scripts": {
"new": "pnpm plop && pnpm install && pnpm run lint",
"prepare": "husky install",
"build": "pnpm run turbo:build",
"dev": "pnpm run turbo:dev",
"lint": "prettier --write --list-different . && eslint --ext \".js,.vue\" . && pnpm run turbo:lint",
"test": "pnpm run turbo:test",
"turbo:build": "turbo run build",
"turbo:dev": "turbo run dev --parallel",
"turbo:lint": "turbo run lint",
"turbo:test": "turbo run test",
"changeset:create": "pnpm changeset",
"changeset:create-empty": "pnpm changeset --empty",
"changeset:version": "pnpm changeset version",
"changeset:publish": "turbo run build lint test && pnpm changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/config-conventional": "^17.8.1",
"@kinematic-lab/eslint-config-typescript": "workspace:*",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"commitlint": "^17.8.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-vue": "^9.18.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"plop": "^3.1.2",
"prettier": "^2.8.8",
"turbo": "latest",
"typescript": "^5.2.2"
}
}