-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
96 lines (96 loc) · 3 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "react-starter-template",
"version": "1.0.0",
"author": {
"name": "Hung Pham",
"email": "[email protected]",
"url": "https://github.com/truonghungit"
},
"scripts": {
"build": "npm run typecheck && vite build",
"commit": "git-cz",
"eslint": "eslint . --ext .ts,.tsx",
"format": "prettier . --write --ignore-path .gitignore && git update-index --again",
"prepare": "husky install",
"serve": "npm run build && vite preview --port 3000",
"start": "vite",
"test:e2e": "start-server-and-test serve http://127.0.0.1:3000/ 'cypress open'",
"test:e2e:ci": "start-server-and-test serve http://127.0.0.1:3000/ 'cypress run'",
"test:unit": "jest --watch",
"test:unit:coverage": "jest --silent --watchAll=false --coverage",
"typecheck": "tsc"
},
"lint-staged": {
"*.{css,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint",
"prettier --write"
],
"package.json": "npx sort-package-json"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@headlessui/react": "^1.6.1",
"@heroicons/react": "^1.0.6",
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "6"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/cz-commitlint": "^15.0.0",
"@cypress/vite-dev-server": "^2.2.2",
"@tailwindcss/forms": "^0.5.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.2",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"@vitejs/plugin-legacy": "^1.6.4",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.4.2",
"commitizen": "^4.2.4",
"cypress": "^9.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^5.0.1",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.5",
"lint-staged": "^12.1.3",
"postcss": "^8.4.6",
"postcss-import": "^14.0.2",
"prettier": "^2.5.1",
"sass": "^1.49.7",
"sort-package-json": "^1.53.1",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.0.18",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4",
"vite": "^2.7.4"
}
}