-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.88 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
58
59
60
61
{
"name": "spindle",
"private": true,
"scripts": {
"test": "run-p lint format test:*",
"test:packages": "lerna run test",
"test:bin": "jest bin",
"lint": "run-p lint:*",
"lint:script": "eslint --cache 'packages/**/src/**/*.{js,ts,tsx}'",
"lint:yaml": "yamllint .github/workflows/*.yml",
"lint:packages": "lerna run lint",
"lint:text": "textlint --quiet .",
"format": "prettier --check 'packages/**/src/**/*.{js,ts,tsx}'",
"fix": "run-p fix:*",
"fix:script": "eslint . --fix",
"fix:packages": "lerna run format",
"fix:format": "prettier --write '**/*.{js,ts,tsx}'",
"fix:text": "textlint --fix .",
"bootstrap": "lerna bootstrap",
"build": "run-s build:*",
"build:package": "lerna run build",
"build:extensionReplace": "jscodeshift -t ./bin/outputExtensionReplace.js packages/*/dist/** --extensions=mjs",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@commitlint/config-lerna-scopes": "^19.0.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.1.5",
"is-ci": "^3.0.0",
"jest": "^29.7.0",
"jscodeshift": "^17.1.1",
"lerna": "^8.0.0",
"npm-run-all2": "^6.0.0",
"prettier": "3.3.3",
"textlint": "^14.0.0",
"textlint-rule-preset-ameba": "openameba/textlint-rule-preset-ameba#v0.5.1",
"typescript": "4.8.2",
"yaml-lint": "^1.2.4"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react/**",
"**/@testing-library/**",
"**/@storybook/**",
"**/@types/**",
"**/webpack/**",
"**/babel-*/**",
"**/@babel/**"
]
}
}