-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.99 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.99 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
{
"name": "theblog",
"version": "1.1.1",
"description": "Reaper's Blog",
"main": "index.js",
"scripts": {
"init": "rimraf .git && git init",
"build": "npm run dll && npm run build:no-dll",
"dll": "webpack --config ./config/webpack.dll.config.js",
"dev": "webpack-dev-server --config ./config/webpack.common.js",
"build:no-dll": "webpack --env.production --config ./config/webpack.common.js",
"server": "node server/app.js",
"server:ssl": "node server/app.js ssl=true"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/Reaper622/react-cli-singlepage.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/Reaper622/react-cli-singlepage/issues"
},
"homepage": "https://gitlab.com/Reaper622/react-cli-singlepage#README",
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"animate.css": "^3.7.2",
"antd": "^3.23.2",
"axios": "^0.19.0",
"babel-plugin-import": "^1.12.2",
"github-markdown-css": "^3.0.1",
"markdown-it": "^9.1.0",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-loadable": "^5.5.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"react-transition-group": "^4.3.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"styled-components": "^4.3.2",
"styled-jsx": "^3.2.2",
"webpack": "^4.32.0",
"webpack-dev-server": "^3.4.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"add-asset-html-webpack-plugin": "^3.1.3",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^3.0.1",
"happypack": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"https": "^1.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"koa": "^2.8.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-sslify": "^4.0.3",
"koa-static": "^5.0.0",
"koa2-cors": "^2.0.6",
"mini-css-extract-plugin": "^0.6.0",
"mysql": "^2.17.1",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"react-hot-loader": "^4.8.8",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"url-loader": "^1.1.2",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1",
"webpack-parallel-uglify-plugin": "^1.1.0"
}
}