-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "webuffet-server",
"version": "1.0.0",
"description": "API for webuffet theme market",
"scripts": {
"build": "npx webpack --config webpack.config.js",
"build:watch": "npx webpack --watch --config webpack.config.js",
"build:prod": "npx webpack --config webpack.prod.js",
"build:prod:watch": "npx webpack --watch --config webpack.prod.js",
"start": "pm2 start ./pm2.json",
"stop": "pm2 stop ./pm2.json",
"restart": "pm2 restart ./pm2.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CAU-OSS-2019/webuffet_server.git"
},
"author": "webuffet",
"license": "ISC",
"dependencies": {
"app-root-path": "^2.2.1",
"axios": "^0.18.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.6.0",
"multer": "^1.4.1",
"vhost": "^3.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@types/app-root-path": "^1.2.4",
"@types/express": "^4.17.0",
"@types/mongoose": "^5.5.6",
"@types/multer": "^1.3.7",
"@types/node": "^12.0.8",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"pm2": "^3.5.1",
"ts-loader": "^6.0.3",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4",
"webpack-node-externals": "^1.7.2"
}
}