-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.81 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
{
"name": "tailwindcss-notes",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"pretty": "prettier --write src",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 10",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run pretty",
"npm run lint"
]
},
"dependencies": {
"@jswork/next": "^1.3.4",
"@jswork/tailwind-wsui": "^1.0.6",
"@jswork/tgv-transformer": "^1.0.4",
"@jswork/with-props": "^1.0.1",
"classnames": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.26.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.26.9",
"@jswork/presets-tailwind": "^1.2.29",
"@rollup/plugin-babel": "^6.0.4",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-legacy": "^6.0.2",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.35",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"react-refresh": "0.10.0",
"tailwind-group-variant": "^1.0.0",
"tailwindcss": "^3.4.3",
"terser": "^5.39.0",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-babel": "^1.3.0"
}
}