-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 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
67
68
69
70
71
{
"name": "react-ts-web",
"version": "1.6.0",
"private": true,
"description": "a react typescript web template",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite --mode development",
"start:dev": "vite --mode development",
"start:test": "vite --mode testing",
"start:staging": "vite --mode staging",
"start:prod": "vite --mode production",
"build": "pnpm build:prod",
"build:dev": "pnpm tsc && vite build --mode development",
"build:test": "pnpm tsc && vite build --mode testing",
"build:staging": "pnpm tsc && vite build --mode staging",
"build:prod": "pnpm tsc && vite build --mode production",
"lint:fix": "eslint --fix --ext .js,.jsx,.tsx,.ts .",
"commit": "git add . && git-cz",
"prepare": "husky install",
"release": "standard-version",
"tsc": "tsc --noEmit"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"keywords": [
"react",
"typescript",
"vite"
],
"homepage": "https://github.com/jayyoonn/react-ts-web",
"bugs": {
"url": "https://github.com/jayyoonn/react-ts-web/issues"
},
"author": "jayyoonn <[email protected]>",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.2",
"zustand": "^4.3.9"
},
"devDependencies": {
"@types/node": "^20.4.5",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitejs/plugin-react": "^4.0.3",
"cz-git": "^1.7.0",
"eslint": "^8.45.0",
"eslint-config-alloy": "^5.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"sass": "^1.64.0",
"standard-version": "^9.5.0",
"typescript": "^5.1.6",
"vite": "^4.4.2",
"vite-plugin-eslint": "^1.8.1"
}
}