-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.41 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
112
113
114
115
116
{
"name": "koa-react-admin-starter",
"version": "1.0.0",
"description": "Koa react",
"private": false,
"main": "src/server/app.js",
"author": "Paralect",
"license": "MIT",
"keywords": [
"koa",
"react",
"redux",
"rest api",
"paralect"
],
"scripts": {
"build": "run-s build:**",
"build:client": "webpack -p --config src/client/webpack.config.js",
"prestart": "npm run build",
"start": "NODE_ENV=production node src/server/app.js",
"development": "run-p development:**",
"development:client": "NODE_ENV=development nodemon --watch src/client/webpack.dev.config.js src/client/hot/app.js",
"development:server": "NODE_ENV=development nodemon --watch src/server src/server/app.js"
},
"dependencies": {
"@hapi/joi": "17.1.1",
"@carbon/icons-react": "10.11.0",
"@hot-loader/react-dom": "16.8.6",
"@koa/cors": "3.0.0",
"@koa/router": "8.0.8",
"@paralect/common-logger": "0.1.10",
"@paralect/node-mongo": "2.0.0-beta.4",
"app-module-path": "2.2.0",
"axios": "0.18.1",
"babel-plugin-lodash": "3.3.4",
"bcrypt": "4.0.1",
"carbon-components": "10.12.0",
"carbon-components-react": "7.12.0",
"carbon-icons": "7.0.7",
"classnames": "2.2.6",
"connected-react-router": "6.5.2",
"cssnano": "4.1.10",
"handlebars": "4.1.2",
"history": "4.9.0",
"html-webpack-plugin": "3.2.0",
"incstr": "1.2.3",
"koa": "2.7.0",
"koa-bodyparser": "4.3.0",
"koa-helmet": "5.2.0",
"koa-logger": "3.2.1",
"koa-mount": "4.0.0",
"koa-qs": "2.0.0",
"koa-static": "5.0.0",
"koa-validate": "1.0.7",
"koa-views": "6.2.0",
"koa-webpack": "5.2.4",
"lodash": "4.17.14",
"lodash-webpack-plugin": "0.11.5",
"moment": "2.24.0",
"moment-duration-format": "2.3.2",
"nodemon": "2.0.2",
"normalize.css": "8.0.1",
"postcss-import": "12.0.1",
"postcss-nested": "4.1.2",
"postcss-preset-env": "6.7.0",
"prop-types": "15.7.2",
"psl": "1.8.0",
"qs": "6.9.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-hot-loader": "4.12.7",
"react-icon-base": "2.1.2",
"react-icons": "3.7.0",
"react-redux": "7.1.0",
"react-router-dom": "5.1.2",
"redux": "4.0.4",
"redux-thunk": "2.3.0",
"uuid": "3.3.2",
"webpack": "4.35.3",
"webpack-cli": "3.3.6"
},
"devDependencies": {
"@babel/cli": "7.5.0",
"@babel/core": "7.5.4",
"@babel/plugin-proposal-class-properties": "7.5.0",
"@babel/plugin-proposal-export-namespace-from": "7.5.2",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.5.4",
"@babel/preset-react": "7.0.0",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"babel-plugin-inline-react-svg": "1.1.0",
"babel-plugin-module-resolver": "3.2.0",
"babel-plugin-react-css-modules": "5.2.6",
"css-loader": "3.0.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.17.0",
"mini-css-extract-plugin": "0.8.0",
"node-sass": "4.14.1",
"npm-run-all": "4.1.5",
"postcss-loader": "3.0.0",
"sass-loader": "8.0.2",
"style-loader": "0.23.1",
"stylelint": "10.1.0",
"stylelint-config-standard": "18.3.0",
"url-loader": "2.0.1"
},
"engines": {
"node": ">= 12"
}
}