-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "youwa",
"version": "1.0.0",
"description": "A text-summarization web application specially built for unspecialized readers of contract",
"main": "server.js",
"scripts": {
"build": "webpack",
"dev": "webpack serve --host 0.0.0.0 --client-web-socket-url ws://10.10.10.61:8080/ws --watch-options-poll",
"test": "npx nodemon server.js",
"production": "NODE_ENV=production node server.js",
"start": "node server.js"
},
"keywords": [
"contract",
"text-summarization"
],
"author": "Mike Chen, Kaito Taguchi, Takehiro Sanoki",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"element-ui": "^2.15.8",
"express": "^4.18.1",
"jszip": "^3.10.0",
"lodash": "^4.17.21",
"vue": "^2.6.14",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"archiver": "^5.3.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"eslint": "^8.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.1",
"sass-loader": "^12.6.0",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}