forked from iceener/overment.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (46 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.35 KB
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./dist && NODE_ENV=production webpack && babel ./src -d ./dist --copy-files --ignore=resources",
"prestart": "npm run -s build",
"start": "NODE_ENV=production PORT=8080 node dist/index.js",
"dev": "NODE_ENV=development PORT=8080 nodemon -e js,pug -w ./src --exec \"babel-node ./src\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@types/express": "^4.16.0",
"@types/node": "^10.12.18",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"extract-text-webpack-plugin": "2.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"reload": "^2.4.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"vue-loader": "^15.7.0",
"webpack": "^4.28.3",
"webpack-cli": "^3.3.0",
"webpack-dev-middleware": "^3.5.1",
"webpack-hot-middleware": "^2.24.3"
},
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"pug": "^2.0.3",
"vue": "^2.5.21",
"vuetify": "^1.4.2"
}
}