-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2 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
{
"name": "express-vuejs-template",
"version": "1.0.0",
"description": "Express vuejs template",
"private": true,
"main": "src/server/index.js",
"engines": {
"node": "~10.10.0",
"npm": "~6.4.1"
},
"scripts": {
"start": "node src/server/index.js",
"start-prod": "NODE_ENV=production node src/server/index.js",
"clean": "rm ./public/js/bundle.*; rm ./public/js/webpack-assets.json; exit 0",
"build": "npm run clean; webpack --config ./config/webpack.prod.config.js --progress --colors",
"postinstall": "npm run build",
"dev": "nodemon -e 'js' -i 'src/client' -i 'public' --inspect=5858 src/server/index.js",
"test-ci": "NODE_ENV=test mocha --exit",
"test": "NODE_ENV=test nodemon --exec 'mocha -G --inspect=5858' || exit 0",
"lint": "eslint --ignore-pattern 'public' ./ || exit 0"
},
"dependencies": {
"assets-webpack-plugin": "3.9.6",
"axios": "0.18.0",
"babel-core": "6.26.3",
"babel-loader": "8.0.2",
"bcryptjs": "^2.4.3",
"body-parser": "1.18.3",
"connect-history-api-fallback": "1.5.0",
"cors": "2.8.4",
"crypto": "^1.0.1",
"css-loader": "1.0.0",
"ejs": "2.6.1",
"express": "4.16.3",
"express-rate-limit": "^3.1.1",
"express-webpack-assets": "0.1.0",
"jsonwebtoken": "^8.3.0",
"morgan": "^1.9.1",
"pg": "^7.4.3",
"sequelize": "^4.38.1",
"socket.io": "2.1.1",
"vue": "2.5.17",
"vue-loader": "15.4.2",
"vue-router": "3.0.1",
"vue-template-compiler": "2.5.17",
"vuex": "3.0.1",
"vuex-router-sync": "5.0.0",
"webpack": "4.18.0",
"webpack-dev-middleware": "3.3.0",
"webpack-hot-middleware": "2.23.1",
"webpack-middleware": "1.5.1",
"winston": "3.1.0"
},
"devDependencies": {
"chai": "4.1.2",
"dotenv": "6.0.0",
"eslint": "5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "5.2.0",
"nodemon": "1.18.4",
"sqlite3": "^4.0.2",
"supertest": "3.3.0",
"webpack-cli": "^3.1.0"
}
}