-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "novel-demo",
"version": "1.2.5",
"description": "",
"main": "index.js",
"bin": "bin/www",
"scripts": {
"dev": "nodemon bin/www",
"start": "pm2 start bin/www",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"build": "webpack --config webpack.config.js --mode production",
"watch": "webpack --config webpack.config.js -w --mode development"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"autoprefixer": "^9.7.6",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"postcss-loader": "^3.0.0",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0"
},
"dependencies": {
"koa2": "^2.0.0-alpha.7",
"async": "^3.1.0",
"axios": "^0.19.0",
"cheerio": "^1.0.0-rc.3",
"iconv-lite": "^0.5.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"nodemon": "^2.0.2",
"pm2": "^4.2.1",
"redis": "^2.8.0",
"request": "^2.88.0",
"socket.io": "^2.3.0"
}
}