-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.32 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "monorepo",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky",
"lint": "eslint --ext .ts,.tsx",
"lint:fix": "eslint --fix --ext .ts,.tsx",
"format": "prettier --write",
"test": "npm run test --workspaces --if-present",
"build:package": "npm run build:package --workspaces --if-present",
"docs": "npm run start -w site --",
"docs:ja": "npm run start -w site -- --locale ja",
"docs:wtr": "npm run write-translations -w site",
"docs:wtr:ja": "npm run write-translations -w site -- --locale ja",
"build:docs": "npm run build -w site",
"build:docs:production": "npm run build:package && npm run build -w site",
"serve:docs": "http-server ./site/build",
"clean": "npm run clean --workspaces --if-present",
"clean:build": "npm run clean:build --workspaces --if-present"
},
"author": {
"name": "mimoz",
"email": "[email protected]",
"url": "https://m1m0zzz.github.io/"
},
"license": "UNLICENSED",
"workspaces": [
"packages/functions",
"packages/react",
"packages/web-components",
"site"
],
"devDependencies": {
"@eslint/js": "^9.14.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/eslint__js": "^8.42.3",
"@types/github-script": "github:actions/github-script",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"eslint": "^9.14.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-lit-a11y": "^4.1.4",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-storybook": "^0.11.0",
"eslint-plugin-unused-imports": "^4.1.4",
"http-server": "^14.1.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.24.4",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"engines": {
"node": "20.x"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": []
}
}