-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.37 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
71
72
73
74
75
76
{
"name": "van-gogh-app",
"version": "1.0.0",
"description": "Application for the van Gogh Museum",
"main": "server.js",
"scripts": {
"dev": "run-p dev:client dev:server dev:start",
"dev:start": "node -e \"setTimeout(()=>{}, 2000)\" && nodemon src/index.js --inspect --ignore",
"dev:client": "webpack-dev-server -d --hot --config config/webpack.client.config.js",
"dev:server": "webpack --watch --config config/webpack.server.config.js",
"start": "cross-env NODE_ENV=production node src/index.js",
"build": "rimraf src/assets/dist && npm run build:client && npm run build:server",
"build:client": "cross-env NODE_ENV=production webpack --config config/webpack.client.config.js --progress --hide-modules",
"build:server": "cross-env NODE_ENV=production webpack --config config/webpack.server.config.js --progress --hide-modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VincentKempers/van-gogh-app.git"
},
"keywords": [
"Vue",
"Server Side Rendered",
"SSR"
],
"authors": [
"Vincent Kempers <[email protected]>",
"Kang Yun Wang <[email protected]"
],
"license": "GPLv3",
"bugs": {
"url": "https://github.com/VincentKempers/van-gogh-app/issues"
},
"homepage": "https://github.com/VincentKempers/van-gogh-app#readme",
"dependencies": {
"body-parser": "^1.18.3",
"chart.js": "^2.7.2",
"compression": "^1.7.2",
"cross-env": "^5.0.5",
"dotenv": "^6.0.0",
"mongoose": "^5.1.4",
"socket.io": "^2.1.1",
"uuid": "^3.2.1",
"vue": "^2.4.4",
"vue-chartjs": "^3.3.1",
"vue-router": "^2.7.0",
"vue-server-renderer": "^2.5.2",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"css-loader": "^0.28.7",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-vue": "^4.5.0",
"extract-text-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"memory-fs": "^0.4.1",
"node-sass": "^4.9.0",
"nodemon": "^1.17.5",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"uglifyjs-webpack-plugin": "^1.2.7",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack-cli": "^3.0.3",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.9.1",
"webpack-hot-middleware": "^2.19.1",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.6.0"
}
}