-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.11 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.11 KB
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
{
"name": "my-app",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "vite --config vite.dev.config.ts",
"build": "vite build --config vite.prod.config.ts",
"preview": "vite preview",
"lint": "eslint --ext .ts,.tsx src",
"tsc": "tsc --project tsconfig.json",
"docker-build": "docker build -t react-app .",
"docker-run": "docker run -p 8080:8080 react-app",
"docker": "yarn docker-build && yarn docker-run",
"precommit": "yarn lint && yarn tsc",
"prepare": "rimraf .husky && husky install && husky add .husky/commit-msg \"yarn commitlint -e\" && husky add .husky/pre-commit \"yarn precommit\"",
"code-check": "yarn lint --fix && git add .",
"local": "yarn build && yarn preview"
},
"dependencies": {
"jotai": "2.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.17.0",
"styled-components": "6.1.0",
"ramda": "0.29.1"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "7.22.15",
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"@types/node": "20.8.8",
"@types/react": "18.2.31",
"@types/react-dom": "18.2.14",
"@types/styled-components": "5.1.29",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/eslint-plugin-tslint": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"@vitejs/plugin-react": "4.1.0",
"babel-plugin-styled-components": "2.1.4",
"commitlint": "17.7.2",
"dotenv": "16.3.1",
"eslint": "8.52.0",
"eslint-config-codemask": "1.1.7",
"eslint-plugin-functional": "6.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "46.8.2",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-nested-if": "1.0.0",
"eslint-plugin-no-else": "0.2.2",
"eslint-plugin-no-loops": "0.3.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"esformatter-eol-last": "1.0.0",
"husky": "8.0.3",
"rimraf": "5.0.5",
"terser": "5.22.0",
"typescript": "5.2.2",
"vite": "4.5.0",
"vite-tsconfig-paths": "4.2.1"
}
}