forked from modern-agile-team/modern-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 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
{
"name": "modern-kit",
"private": true,
"workspaces": [
"docs",
"packages/**/*"
],
"author": "ssi02014 <ssi02014@naver.com>",
"scripts": {
"coauthor": "node scripts/coauthor.js",
"typecheck": "lerna run typecheck",
"test": "lerna run test:run",
"build": "lerna run build && yarn eslint packages && yarn typecheck && yarn test",
"publish": "lerna version && lerna publish from-package",
"start:docs": "lerna run start",
"build:docs": "lerna run build:docs",
"publish:docs": "lerna run publish:docs",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version"
},
"homepage": "https://github.com/modern-agile-team/modern-kit",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.47.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-unused-imports": "^3.1.0",
"lerna": "^8.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.1.6"
},
"license": "MIT",
"packageManager": "yarn@4.0.1"
}