-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.6 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
{
"name": "nextjs-boilerplate",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-classes": "7.5.5",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.20.0",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"moment": "^2.25.3",
"next": "^9.4.0",
"next-compose-plugins": "^2.2.0",
"next-fonts": "^1.1.0",
"next-images": "^1.4.0",
"pm2": "^4.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5"
},
"scripts": {
"start": "node server.js",
"build": "NODE_ENV=production ENV=production next build",
"sandbox": "NODE_ENV=sandbox ENV=sandbox pm2 start server.js --name app.sand",
"production": "NODE_ENV=production ENV=production pm2 start server.js --name app.prod"
}
}