-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
42 lines (42 loc) · 1.35 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
{
"name": "chatux",
"version": "1.3.0",
"description": "",
"main": "dist/chatux.min.js",
"scripts": {
"start": "webpack-dev-server",
"startr": "set NODE_ENV=test&&webpack-dev-server --config webpack.config.js --mode production",
"start:chat-server": "node example_chat_server/server.js",
"build": "webpack --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "set NODE_ENV=test&&webpack --config webpack.config.js --mode production"
},
"author": "Tom Misawa <riversun.org@gmail.com> (https://github.com/riversun)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/riversun/chatux.git"
},
"bugs": {
"url": "https://github.com/riversun/chatux/issues"
},
"homepage": "https://github.com/riversun/chatux#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"babel-loader": "^8.2.3",
"css-loader": "^3.6.0",
"style-loader": "^1.3.0",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"botui": "git+https://github.com/riversun/botui.git",
"jsframe.js": "^1.6.2",
"vue": "2.0.5"
}
}