-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "hunnitlog",
"version": "1.0.0",
"description": "Hunnit-log Server",
"main": "index.js",
"scripts": {
"start": "nodemon",
"start:production": "node ./dist/server.js",
"api": "apidoc -i src/ -o apidoc",
"create": "babel-node src/modules/seeder,js -i",
"delete": "babel-node src/modules/seeder,js -d",
"babel-version": "babel --version",
"lint": "eslint src/**/*.js",
"lint:fix": "yarn lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hunnit-log/Server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hunnit-log/Server/issues"
},
"homepage": "https://github.com/hunnit-log/Server#readme",
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.7",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2"
},
"dependencies": {
"apidoc": "^0.25.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"log4js": "^6.3.0",
"mongoose": "^5.10.16"
}
}