-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·106 lines (106 loc) · 3.65 KB
/
package.json
File metadata and controls
executable file
·106 lines (106 loc) · 3.65 KB
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
{
"name": "otaku",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env RUN_ENV=dev NODE_ENV=development webpack-dev-server --watch --progress --hotOnly --mode development --config ./webpack.dev.js",
"build": "cross-env RUN_ENV=build NODE_ENV=production webpack --mode production --config ./webpack.build.js --optimize-minimize",
"server": "cross-env RUN_ENV=server NODE_ENV=production babel-node --harmony server/index.js",
"server-dev": "cross-env RUN_ENV=server-dev NODE_ENV=production nodemon --watch src --watch server --exec babel-node --harmony server/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "7.0.0",
"antd-mobile": "2.2.6",
"apollo-cache-inmemory": "1.1.11",
"apollo-client": "2.2.8",
"apollo-link": "1.2.3",
"apollo-link-batch-http": "1.2.2",
"apollo-link-error": "1.1.1",
"apollo-link-schema": "1.1.1",
"apollo-server-koa": "2.1.0",
"axios": "0.18.0",
"babel-plugin-import-graphql": "2.6.2",
"classnames": "2.2.6",
"gestalt": "0.83.0",
"graphql": "14.0.2",
"graphql-tag": "2.9.2",
"graphql-tools": "4.0.2",
"jsonwebtoken": "8.3.0",
"koa": "2.6.1",
"koa-bodyparser": "4.2.1",
"koa-compress": "3.0.0",
"koa-range": "0.3.0",
"koa-router": "7.4.0",
"koa-static": "5.0.0",
"koa-static-cache": "5.1.2",
"koa2-cors": "2.0.5",
"mongoose": "5.3.6",
"react": "16.7.0-alpha.0",
"react-apollo": "2.1.6",
"react-dom": "16.7.0-alpha.0",
"react-loadable": "5.5.0",
"react-markdown": "4.0.3",
"react-redux": "5.0.7",
"react-router-dom": "4.3.1",
"redux": "4.0.1",
"redux-persist": "5.10.0",
"redux-thunk": "2.3.0",
"schema-utils": "1.0.0",
"styled-components": "4.0.2"
},
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/node": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-decorators": "7.3.0",
"@babel/plugin-proposal-export-namespace-from": "7.0.0",
"@babel/plugin-proposal-function-sent": "7.1.0",
"@babel/plugin-proposal-numeric-separator": "7.0.0",
"@babel/plugin-proposal-throw-expressions": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-stage-0": "7.0.0",
"@babel/register": "7.0.0",
"autoprefixer": "9.3.1",
"babel-loader": "8.0.4",
"babel-plugin-add-module-exports": "1.0.0",
"babel-plugin-direct-import": "0.5.0",
"babel-plugin-dynamic-import-node": "2.2.0",
"babel-plugin-import": "1.10.0",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"clean-webpack-plugin": "0.1.19",
"copy-webpack-plugin": "4.5.4",
"cross-env": "5.2.0",
"css-loader": "1.0.0",
"css-modules-require-hook": "4.2.3",
"file-loader": "2.0.0",
"html-webpack-plugin": "3.2.0",
"import": "0.0.6",
"import-inspector": "2.0.0",
"inline-manifest-webpack-plugin": "4.0.2",
"jsonwebtoken": "8.3.0",
"less": "3.0.4",
"less-loader": "4.1.0",
"mini-css-extract-plugin": "0.4.0",
"node-require-alias": "1.0.1",
"postcss-loader": "3.0.0",
"react-helmet": "5.2.0",
"react-hot-loader": "4.3.11",
"redux-devtools-extension": "2.13.5",
"request-promise": "4.2.2",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"uglifyjs-webpack-plugin": "2.0.1",
"url-loader": "1.1.2",
"webpack": "4.23.1",
"webpack-bundle-analyzer": "3.0.3",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.10",
"webpack-merge": "4.1.2"
}
}