generated from cpojer/vite-ts-react-tailwind-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.95 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": "@cnakazawa/vite-ts-react-tailwind",
"version": "0.0.1",
"author": "Christoph Nakazawa <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/cpojer/vite-ts-react-tailwind.git"
},
"type": "module",
"engines": {
"node": ">=18.11.0",
"pnpm": ">=7.1.0"
},
"dependencies": {
"colord": "^2.9.3",
"fast-simplex-noise": "^4.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"eslint-plugin-react-hooks": "^4.6.0",
"@babel/plugin-transform-react-jsx-development": "^7.25.9",
"@swc/core": "^1.3.3",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/node": "^18.7.20",
"@types/prettier": "^2.7.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.12",
"babel-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
"eslint": "^8.24.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"vite": "^6.0.3",
"vitest": "^0.23.4"
},
"scripts": {
"build": "vite build",
"preview": "vite preview",
"dev": "vite dev",
"format": "prettier --write .",
"lint:format": "prettier --cache --check .",
"lint": "eslint --cache .",
"test": "npm-run-all --parallel tsc:check vitest:run lint lint:format",
"tsc:check": "tsc",
"vitest:run": "vitest run"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}