-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.25 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
68
69
70
{
"name": "hanyang-chatbot",
"version": "0.0.3",
"description": "hanyang university chatbot",
"main": "webpack.config.js",
"scripts": {
"init": "npm install && cd server && npm install && cd .. && npm run server:bundle",
"test": "npm test",
"copy:images": "cp -rf ./images ./server/public/",
"copy:assets": "cp -rf ./assets ./server/public/",
"copy": "npm run copy:images && npm run copy:assets",
"bundle": "webpack --hide-modules --colors --mode=none",
"dev": "webpack-dev-server --hot --inline --progress --host 0.0.0.0 --disable-host-check true",
"build": "npm run copy && npm run bundle",
"server:bundle": "npm run build && cd server && npm start",
"server": "cd server && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capstone-willson/chatbot-front.git"
},
"author": {
"name": "Taeuk Kang",
"email": "[email protected]",
"url": "http://taeuk.ga"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/capstone-willson/chatbot-front/issues"
},
"homepage": "https://github.com/capstone-willson/chatbot-front#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.3.4",
"babel": "^6.23.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"file-loader": "^3.0.1",
"query-selector-shadow-dom": "^0.3.2",
"style-loader": "^0.23.1",
"svgo": "^1.2.2",
"to-string-loader": "^1.1.5",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"@vaadin/vaadin-list-box": "^1.1.0",
"@vaadin/vaadin-tabs": "^3.0.0",
"@vaadin/vaadin-text-field": "^2.4.4",
"@webcomponents/webcomponentsjs": "^2.2.10",
"bootstrap": "^4.3.1",
"d3": "^5.9.2",
"express": "^4.16.4",
"fs": "0.0.1-security",
"i18next": "^15.0.6",
"lit-html": "^1.0.0",
"venn.js": "^0.2.20"
}
}