-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 1.08 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
{
"name": "nextjs-static-generator-boilerplate",
"version": "1.0.0",
"main": "index.js",
"author": "Antonio Gallo",
"license": "GPLv2",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@types/next": "^7.0.6",
"@zeit/next-preact": "^0.1.0",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"brotli-webpack-plugin": "^1.0.0",
"clean-webpack-plugin": "^1.0.0",
"http-server": "^0.11.1",
"next-compose-plugins": "^2.1.1",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-css-variables": "^0.11.0",
"preact": "^8.4.2",
"preact-compat": "^3.18.4",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"recursive-copy": "^2.0.9"
},
"scripts": {
"dev": "next src",
"start": "next src",
"build": "next build src",
"export": "next export -o dist src",
"prod": "rm -rf node_modules/.cache build dist && next build src && next export src -o dist",
"prod-test": "http-server dist -p 4000 -o",
"deploy": "yarn run prod && ./deploy.sh"
}
}