-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.67 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
{
"name": "new-front-project",
"private": true,
"version": "0.0.0",
"scripts": {
"prepare": "husky install .dev/husky",
"dev": "concurrently \"cd server && npm run dev\" \"cd client && npm run dev\" --kill-others-on-fail",
"build": "npm run build --workspace server --workspace client",
"start": "npm run start --workspace server",
"test": "npm run test ----workspace client",
"lint": "npm run lint --workspaces",
"lint-fix": "npm run lint-fix --workspaces",
"generate-client-api": "openapi-generator-cli generate -i ./server/openapi.json -g typescript-fetch -o ./client/src/http/generated/"
},
"engines": {
"node": "18"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"type-enum": [
"build",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"test"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@openapitools/openapi-generator-cli": "^2.7.0",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"csv-parse": "4.15.0",
"eslint": "8.24.0",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.10",
"find-in-files": "0.5.0",
"husky": "8.0.2",
"node-fetch": "2.6.1",
"typescript": "5.0.4"
},
"workspaces": [
"client",
"server"
]
}