-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "4design",
"repository": {
"type": "git",
"url": "git+https://github.com/4-design/for-ui.git"
},
"homepage": "https://github.com/4-design/for-ui",
"author": "locona <miyamae@youx.co.jp>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"fmt": "run-p fmt:'*'",
"fmt:eslint": "eslint . --fix",
"fmt:prettier": "prettier --write --list-different .",
"lint": "run-p lint:'*'",
"lint:eslint": "eslint .",
"lint:packages": "turbo run lint",
"lint:prettier": "prettier --check .",
"release": "run-p build && changeset publish",
"test": "run-p test:*",
"test:packages": "turbo run test",
"type-check": "turbo run type-check",
"version-packages": "changeset version"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "3.6.1",
"html-webpack-plugin": "^5.5.0",
"lint-staged": "15.2.2",
"npm-run-all2": "6.1.2",
"prettier": "3.2.5",
"turbo": "1.11.2",
"typescript": "5.1.6"
},
"volta": {
"node": "16.20.2"
}
}