-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 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
{
"name": "chat",
"description": "Chat project",
"version": "0.0.1",
"author": "A group of enthusiasts",
"private": true,
"scripts": {
"client-dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"client-build": "cross-env NODE_ENV=production webpack --progress --hide-modules && cpx src/client/index.html dist/client",
"server-build": "babel src/server -d dist/server && babel src/global -d dist/global",
"full-build": "npm run server-build && npm run client-build",
"build-and-start": "npm run full-build && node dist/server",
"server-build-and-start": "npm run server-build && node dist/server"
},
"dependencies": {
"koa": "^2.3.0",
"koa-static": "^4.0.1",
"vue": "^2.4.4",
"ws": "^3.3.1",
"ws-radio": "^0.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.0",
"cpx": "^1.5.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"file-loader": "^1.1.4",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
}
}