-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 1.98 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
{
"name": "rhaego",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack serve --config frontend/webpack.config.js --mode=development",
"build": "webpack --config frontend/webpack.config.js --mode=production",
"server": "nodemon backend/server",
"setup": "sh scripts/setup.sh",
"deploy": "sh scripts/deploy.sh"
},
"repository": {
"type": "git",
"url": "git@github.com:youknowznm/rhaego.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@loadable/component": "^5.14.1",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"babel-plugin-polyfill-corejs2": "^0.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"css-loader": "^5.2.1",
"css-minimizer-webpack-plugin": "^2.0.0",
"file-loader": "^6.2.0",
"highlight.js": "^10.7.2",
"html-webpack-plugin": "^5.3.1",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-cache-control": "^2.0.0",
"koa-conditional-get": "^3.0.0",
"koa-etag": "^4.0.0",
"koa-logger": "^3.2.1",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"marked": "^2.0.3",
"mini-css-extract-plugin": "^1.6.0",
"nanoid": "^3.1.22",
"nedb": "^1.8.0",
"postcss-loader": "^5.2.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"request": "^2.88.2",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "2.0.0",
"terser-webpack-plugin": "^5.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.33.2",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}