-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.63 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-next-koa-starter",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"devF": "cross-env NODE_ENV=development NODE_PATH=./ node ./server/index.js",
"devB": "NODE_ENV=development NODE_PATH=./ nodemon ./server/index.js",
"start": "NODE_ENV=server-prod NODE_PATH=./ node ./server/index.js",
" --- Servers --- ": "",
"build": "next build",
"serverDevStart": "pm2 start ecosystem.config.js --env staging -i max",
"serverDevReload": "pm2 reload ecosystem.config.js --env staging -i max --update-env",
"serverProdStart": "pm2 start ecosystem.config.js --env production -i max",
"serverProdReload": "pm2 reload ecosystem.config.js --env production -i max --update-env",
"postinstall": "next build",
"monit": "pm2 monit",
"stop": "pm2 delete React-Next-Koa-Starter",
"kill": "pm2 kill",
"logs": "pm2 logs",
" --- Other --- ": "",
"flow": "./node_modules/.bin/flow",
"stylelint": "stylelint ./styles/**/* --fix --config .stylelintrc",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"test:client": "NODE_ENV=test NODE_PATH=./ jest --detectOpenHandles"
},
"repository": "https://github.com/LanpWeb/react-next-koa-starter.git",
"author": "Lanp",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"@zeit/next-sass": "^1.0.1",
"axios": "^0.19.2",
"babel-plugin-module-resolver": "^3.2.0",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"dotenv": "^8.2.0",
"email-validator": "^2.0.4",
"highcharts": "^8.0.0",
"highcharts-react-official": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.8.1",
"koa-bodyparser": "^4.2.1",
"koa-compose": "^4.1.0",
"koa-logger": "^3.2.1",
"koa-router": "^7.4.0",
"koa2-swagger-ui": "^2.16.0",
"mongoose": "^5.9.6",
"next": "^9.1.4",
"next-redux-wrapper": "^4.0.1",
"next-routes": "^1.4.2",
"node-sass": "^4.12.0",
"nookies": "^2.0.8",
"password-validator": "^5.0.3",
"react": "^16.9.0",
"react-autosuggest": "^10.0.0",
"react-dom": "^16.9.0",
"react-hook-form": "^5.6.0",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-saga": "^1.1.3",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"request-promise-native": "^1.0.8",
"sw-precache-webpack-plugin": "^0.11.5"
},
"devDependencies": {
"@lanp/eslint-config": "^0.0.6",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"flow-bin": "^0.113.0",
"husky": "^4.2.3",
"jest": "^24.9.0",
"lint-staged": "^10.1.1",
"nodemon": "^1.19.2",
"pm2": "^3.5.1",
"prettier": "^2.0.4",
"stylelint": "^12.0.0",
"stylelint-config-airbnb": "^0.0.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.14.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.scss": [
"stylelint --fix --config ./.stylelintrc"
]
}
}