forked from rdxi/vue-express
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "CMShelper",
"description": "Simplify work with mexican shit",
"author": "[email protected]",
"private": true,
"scripts": {
"start": "node ./server/server.js",
"watch-client": "watchify --entry client/src/client.js --outfile client/public/js/bundle.js --verbose ",
"watch-server": "nodemon server/server.js --watch server --ignore db.json --delay 500ms",
"watch": "concurrently \"npm run watch-client\" \"npm run watch-server\" --timestamp-format \"HH:mm:ss\" --prefix \"{time} [{name}]\" --kill-others --names \"client,server\" ",
"build-client": "cross-env NODE_ENV=production browserify client/src/client.js | uglifyjs --compress warnings=false --mangle > client/dist/build.js"
},
"dependencies": {
"axios": "^0.17.1",
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"ejs": "~2.5.7",
"express": "~4.15.5",
"moment": "^2.20.1",
"morgan": "~1.9.0",
"node-fetch": "^2.6.1",
"node-html-parser": "^3.2.0",
"vue": "^2.0.1",
"vue-router": "^3.0.1"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babelify": "^7.2.0",
"browserify": "^13.0.1",
"concurrently": "^3.5.0",
"cross-env": "^1.0.6",
"nodemon": "^2.0.7",
"uglify-js": "^2.5.0",
"vueify": "^9.1.0",
"watchify": "^3.4.0"
},
"browserify": {
"transform": [
"vueify",
"babelify"
]
},
"browser": {
"vue": "vue/dist/vue.common.js"
}
}