-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.96 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.96 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
63
64
65
66
67
{
"name": "react-starter-kit",
"version": "0.0.1",
"description": "Starting point for your react apps",
"keywords": [
"vite",
"react",
"typescript"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"eslint": "eslint --fix \"src/**/*.{ts,tsx}\"",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"test": "vitest run",
"ladle": "ladle serve -p 6006",
"build-ladle": "ladle build -o dist-ladle",
"tsc": "tsc --noEmit",
"tsc -w": "tsc --noEmit --watch",
"find-unused-code": "ts-prune -p ./tsconfig.json --error --ignore src/stories",
"find-unused-packages": "depcheck --config=./.depcheckrc.yml"
},
"dependencies": {
"@ladle/react": "^1.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"react-test-renderer": "^18.2.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vitejs/plugin-react": "^1.3.2",
"autoprefixer": "^10.4.7",
"cssnano": "^5.1.12",
"depcheck": "^1.4.3",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"happy-dom": "^5.3.1",
"jest-styled-components": "^7.0.8",
"prettier": "^2.7.1",
"react-error-boundary": "^3.1.4",
"stacktracey": "^2.1.8",
"ts-prune": "^0.10.3",
"typescript": "^4.7.4",
"vite": "^2.9.12",
"vite-plugin-svgr": "^2.2.0",
"vitest": "^0.16.0"
},
"engines": {
"yarn": "USE_NPM",
"node": ">=16",
"npm": ">=8"
}
}