-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 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": "linker",
"version": "1.0.0",
"private": true,
"license": "MIT",
"packageManager": "yarn@4.0.2",
"repository": {
"type": "git",
"url": "https://github.com/YAPP-Github/23rd-Web-Team-1-FE.git"
},
"engines": {
"node": ">=18.17.0",
"yarn": "^4.0.2"
},
"workspaces": [
"packages/*",
"services/*"
],
"scripts": {
"dev": "yarn workspace web dev",
"dev:mock": "yarn workspace web dev:mock",
"build": "yarn workspace web build && yarn workspace web export",
"typecheck": "yarn workspace web typecheck",
"lint": "yarn workspace web lint",
"test": "yarn workspace web test",
"postinstall": "husky install",
"storybook": "yarn workspace @linker/lds storybook",
"build-storybook": "yarn workspace @linker/lds build-storybook"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@linker/eslint-config": "workspace:^",
"@linker/eslint-plugin": "workspace:^",
"@tanstack/eslint-plugin-query": "^5.8.4",
"@types/node": "^20.10.4",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}