-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.98 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
{
"name": "seokkao-page-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run apollo:codegen && npm run tailwind:build && next dev",
"tailwind:prodbuild": "NODE_ENV=production npm run tailwind:build",
"tailwind:build": "NODE_ENV=production tailwind build styles/globals.css -o styles/styles.css",
"apollo:codegen": "rimraf __generated__ && NODE_ENV=production apollo client:codegen __generated__ --target=typescript --outputFlat",
"build": "next build",
"prebuild": "npm run tailwind:prodbuild",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@apollo/client": "^3.4.5",
"@aws-amplify/ui-react": "^1.2.24",
"@badrap/bar-of-progress": "^0.1.2",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@hookform/error-message": "^2.0.0",
"@nidi/html2canvas": "^1.0.0-rc.13",
"@tailwindcss/line-clamp": "^0.2.1",
"@types/react-dropzone": "^5.1.0",
"date-fns": "^2.23.0",
"deepmerge": "^4.2.2",
"graphql": "^15.5.1",
"moment": "^2.29.1",
"next": "11.0.1",
"next-seo": "^4.28.1",
"react": "17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-chartjs-2": "^3.0.4",
"react-datepicker": "^4.2.1",
"react-dom": "17.0.2",
"react-dropzone": "^11.4.2",
"react-hook-form": "^7.12.2",
"react-lazyload": "^3.2.0",
"react-loading-skeleton": "^2.2.0",
"react-pageflip": "^2.0.3",
"react-slick": "^0.28.1",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@types/lodash": "^4.14.172",
"@types/react": "17.0.16",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-datepicker": "^4.1.5",
"@types/react-lazyload": "^3.1.1",
"@types/react-slick": "^0.23.5",
"autoprefixer": "^10.3.1",
"eslint": "7.32.0",
"eslint-config-next": "11.0.1",
"postcss": "^8.3.6",
"tailwindcss": "^2.2.7",
"typescript": "4.3.5"
}
}