forked from cpojer/vite-ts-react-tailwind-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "@nkzw/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": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@nkzw/eslint-config": "^1.0.0",
"@swc/core": "^1.3.36",
"@types/node": "^20.2.3",
"@types/react-dom": "^18.0.11",
"@types/react": "^18.0.28",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.34.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"tailwindcss": "^3.2.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vite": "^4.1.4",
"vitest": "^0.34.0"
},
"scripts": {
"build": "vite build",
"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"
]
}