-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 980 Bytes
/
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
{
"name": "MyFileServer",
"version": "1.0.0",
"description": "A file server powered by nodejs.",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development nodemon ./src/index.js",
"build": "webpack --config webpack.js",
"test": "echo test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alekye/MyFileServer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alekye/MyFileServer/issues"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"formidable": "^1.2.2",
"json5": "^2.1.3",
"log4js": "^6.2.1",
"moment": "^2.25.3"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.2",
"express-swagger-generator": "^1.1.17",
"nodemon": "^2.0.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}