forked from stevekinney/polymorphic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.5 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
{
"name": "template-vite-typescript",
"private": true,
"version": "0.0.0",
"type": "module",
"files": [
"dist",
"index.d.ts"
],
"main": "./dist/counter.umd.cjs",
"module": "./dist/counter.js",
"types": "./index.d.ts",
"exports": {
"types": "./index.d.ts",
"import": "./dist/counter.js",
"require": "./dist/counter.umd.cjs"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"prepare": "husky install",
"test": "vitest",
"lint": "eslint",
"format": "prettier --write ."
},
"devDependencies": {
"@logux/eslint-config": "^50.0.0",
"@total-typescript/ts-reset": "^0.4.2",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-c8": "^0.32.0",
"@vitest/ui": "^0.32.0",
"autoprefixer": "^10.4.14",
"commitlint": "^17.6.5",
"eslint": "^8.42.0",
"eslint-config-postcss": "^4.0.0",
"eslint-config-prettier": "^8.8.0",
"esno": "^0.16.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vitest": "0.32.0"
},
"dependencies": {
"clsx": "^1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.7",
"redux": "^4.2.1"
}
}