-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.08 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
{
"name": "front-end",
"version": "0.0.0",
"license": "UNLICENSED",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"start": "node server.js",
"lint": "run-p lint:*",
"lint:eslint": "eslint src --ext .js,.jsx,.ts,.tsx --cache --ignore-path .gitignore",
"lint:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check --ignore-path .gitignore",
"lint:typecheck": "tsc",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"prepare": "husky install",
"gen-api": "openapi-generator-cli generate -g typescript-axios -i https://raw.githubusercontent.com/21hack02win/nascalay-backend/main/docs/openapi.yml -o ./src/utils/apis/generated/"
},
"lint-staged": {
"src/*.{js,jsx,ts,tsx,html}": [
"eslint",
"prettier --check"
]
},
"dependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@mdi/js": "^6.5.95",
"@mdi/react": "^1.5.0",
"@mui/material": "^5.2.3",
"@reduxjs/toolkit": "^1.6.2",
"axios": "^0.24.0",
"connect-history-api-fallback": "^1.6.0",
"emotion-reset": "^3.0.1",
"express": "^4.17.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-redux": "^7.2.6",
"react-router-dom": "6",
"serve-favicon": "^2.5.0",
"vivus": "^0.4.6"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.3.0",
"@openapitools/openapi-generator-cli": "^2.4.18",
"@types/babel__core": "^7.1.16",
"@types/node": "^16.11.11",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/vivus": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@vitejs/plugin-react": "^1.0.0",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"typescript": "^4.3.2",
"vite": "^2.6.4"
}
}