forked from ccxcxd/GFDB-Web
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.5 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.5 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
{
"name": "gfdb",
"version": "0.1.0",
"description": "Girls Frontline Database",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"fix-memory-limit": "cross-env LIMIT=2048 increase-memory-limit",
"predev": "node ./bin/init.js dev",
"dev": "webpack-dev-server --config ./build/webpack.dev.conf.js",
"prebuild": "rimraf dist/** && node ./bin/init.js build",
"build": "cross-env publicPath='/' webpack --config ./build/webpack.prod.conf.js",
"local": "http-server ./dist",
"predll": "node ./bin/init.js build",
"dll": "webpack --config ./build/webpack.dll.conf.js",
"db": "webpack --config ./build/webpack.db.conf.js"
},
"author": "pohcy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/pohcy/GFDB-Web.git"
},
"dependencies": {
"antd": "3.17.0",
"axios": "^0.19.0",
"codemirror": "5.46.0",
"dva": "2.6.0-beta.3",
"dva-loading": "3.0.2",
"dva-model-extend": "0.1.2",
"file-saver": "2.0.1",
"jquery": "3.4.1",
"react": "16.8.4",
"react-codemirror2": "6.0.0",
"react-dom": "16.8.4",
"react-helmet": "5.2.1",
"react-redux": "7.0.3"
},
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.4",
"@babel/preset-react": "7.0.0",
"acorn": "6.1.1",
"babel-loader": "8.0.5",
"babel-plugin-import": "1.11.0",
"babel-plugin-lodash": "3.3.4",
"babel-polyfill": "6.26.0",
"copy-webpack-plugin": "5.0.3",
"cross-env": "5.2.0",
"css-loader": "2.1.1",
"file-loader": "3.0.1",
"friendly-errors-webpack-plugin": "1.7.0",
"fs-extra": "7.0.1",
"html-webpack-plugin": "4.0.0-beta.5",
"http-server": "0.11.1",
"increase-memory-limit": "^1.0.7",
"less": "3.9.0",
"less-loader": "5.0.0",
"merge-jsons-webpack-plugin": "1.0.19",
"mini-css-extract-plugin": "0.6.0",
"node-notifier": "5.4.0",
"optimize-css-assets-webpack-plugin": "5.0.1",
"prerender-spa-plugin": "3.4.0",
"progress-bar-webpack-plugin": "1.12.1",
"rimraf": "2.6.3",
"style-resources-loader": "1.2.1",
"terser-webpack-plugin": "1.2.3",
"url-loader": "1.1.2",
"url-polyfill": "1.1.5",
"webpack": "4.30.0",
"webpack-bundle-analyzer": "3.3.2",
"webpack-cli": "3.3.2",
"webpack-dev-server": "3.3.1",
"webpack-merge": "4.2.1",
"yargs": "13.2.2"
}
}