-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "template-react-app",
"version": "0.0.1",
"private": true,
"dependencies": {
"autoprefixer": "^10.4.2",
"debounce": "^1.2.0",
"framer-motion": "^6.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.3.0",
"recoil": "^0.7.3",
"throttleit": "^1.0.0"
},
"devDependencies": {
"@types/debounce": "^1.2.0",
"@types/node": "^17.0.35",
"@types/react": "^18.0.14",
"@types/react-helmet": "^6.1.5",
"@types/throttleit": "^1.0.0",
"@vitejs/plugin-react": "^1.3.2",
"postcss": "^8.4.6",
"tailwindcss": "^3.1.3",
"typescript": "^4.7.2",
"vite": "^2.9.9"
},
"scripts": {
"build:tailwind": "tailwindcss -i src/tailwind.css -o src/tailwind.output.css --minify --watch",
"build:tailwind-production": "tailwindcss -i src/tailwind.css -o src/tailwind.output.css --minify",
"start": "vite & yarn build:tailwind",
"build": "NODE_ENV=production yarn build:tailwind-production && tsc && vite build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}