-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"tailwindConfig": "npx tailwindcss build styles/globals.css -o styles/tailwind.css",
"dev": "npm run tailwindConfig && next dev",
"build": "npm run tailwindConfig && next build",
"start": "next start"
},
"dependencies": {
"@headlessui/react": "^0.2.0",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"autoprefixer": "^10.2.1",
"date-fns": "^2.16.1",
"js-cookie": "^2.2.1",
"lodash": "^4.17.20",
"next": "10.0.5",
"nprogress": "^0.2.0",
"postcss": "^8.2.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-slick": "^0.27.14",
"react-spinners": "^0.10.4",
"react-transition-group": "^4.4.1",
"slick-carousel": "^1.8.1",
"tailwindcss": "^2.0.2"
},
"devDependencies": {
"@types/js-cookie": "^2.2.6",
"@types/lodash": "^4.14.167",
"@types/node": "^14.14.20",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.0",
"@types/react-slick": "^0.23.4",
"typescript": "^4.1.3"
}
}