-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.79 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": "dementia",
"author": "Rise Impact",
"version": "1.2.0",
"scripts": {
"dev": "TAILWIND_MODE=watch vite",
"build": "NODE_ENV=production tsc && vite build",
"serve": "vite preview",
"prepare": "husky install",
"type-check": "tsc --pretty --noEmit",
"lint": "eslint --ext js,ts,tsx --cache --fix src/"
},
"dependencies": {
"history": "^5.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.2.2",
"react-router-dom": "^6.2.1",
"use-count-up": "^2.3.1"
},
"devDependencies": {
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@tailwindcss/aspect-ratio": "^0.3.0",
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/line-clamp": "^0.2.2",
"@tailwindcss/typography": "^0.4.1",
"@types/node": "^17.0.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.4.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.3",
"postcss": "^8.4.5",
"postcss-preset-env": "^7.0.2",
"prettier": "^2.5.1",
"tailwindcss": "^2.2.19",
"tailwindcss-debug-screens": "^2.2.1",
"typescript": "~4.5.4",
"vite": "~2.7.3",
"vite-react-jsx": "^1.1.2"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": "> 0.6%, not dead, not IE 11",
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --max-warnings=0 --cache --fix"
]
},
"engines": {
"node": ">=16"
}
}