-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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
{
"name": "functional-coding-nutshell",
"version": "1.0.0",
"main": "index.js",
"private": true,
"repository": "https://github.com/function-and-mountain/functional-coding-nutshell",
"author": "minsoo kim <[email protected]>",
"workspaces": [
"apps/*",
"tools/*",
"packages/**/*"
],
"scripts": {
"docs": "yarn workspace docs",
"lint": "eslint .",
"pre-commit": "lint-staged --config .lintstagedrc.js",
"test": "jest",
"practice:fe-cafe": "yarn workspace @practice/fecrash-cafe",
"example": "yarn workspace @nutshell/example"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.0.5",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "13.4.7",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"jest": "^29.3.1",
"lint-staged": "^13.2.2",
"ts-jest": "^29.1.1",
"typescript": "5.1.3"
},
"packageManager": "[email protected]"
}