-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "next-barebone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server.js",
"clean": "rm -rf .next public/manifest out ",
"build": "next build",
"buildstart": "yarn clean && yarn build && NODE_ENV=production node server.js",
"start": "NODE_ENV=production node server.js",
"test": "yarn clean && jest",
"exportclean": "yarn clean && next build && next export",
"export": "next export"
},
"dependencies": {
"google-map-react": "^1.1.5",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^7.1.0",
"imagemin-svgo": "^7.0.0",
"mdbreact": "^4.23.1",
"next": "^9.1.5",
"next-compose-plugins": "^2.2.0",
"next-fonts": "^0.19.0",
"next-images": "^1.2.0",
"next-manifest": "^3.0.1",
"next-offline": "^4.0.6",
"next-optimized-images": "^2.5.4",
"next-seo": "^3.1.0",
"nextjs-sitemap-generator": "^0.4.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"webp-loader": "^0.6.0"
},
"devDependencies": {
"@zeit/next-css": "^1.0.1",
"next-purgecss": "^3.1.2"
}
}