This repository has been archived by the owner on Feb 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.92 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "epicsevendb-api",
"description": "EpicSevenDB.com API Server",
"author": "RaphaelDDL",
"version": "2.1.0",
"homepage": "https://github.com/EpicSevenDB/api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/EpicSevenDB/api.git"
},
"bugs": {
"url": "https://github.com/EpicSevenDB/api/issues"
},
"license": "CC-BY-NC-SA-4.0",
"main": "dist/index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --inspect src/index.js --exec babel-node",
"build": "babel src -d dist",
"prettier": "prettier-eslint --write \"$PWD/src/**/*.js\"",
"lint": "eslint \"src/**/*.js\" --fix",
"codestandard": "npm run prettier && npm run lint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@babel/cli": "^7.12.0",
"@babel/core": "^7.10.5",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.5",
"@babel/runtime": "^7.10.5",
"babel-eslint": "^10.1.0",
"babel-preset-minify": "^0.5.1",
"body-parser": "^1.19.0",
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"dateformat": "^3.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-device": "^0.4.2",
"express-rate-limit": "^5.1.3",
"helmet": "^3.23.3",
"js-yaml": "^3.14.0",
"mongodb": "^3.5.9",
"nocache": "^2.1.0",
"node-cron": "^2.0.3",
"node-fetch": "^3.1.1",
"swagger-ui-express": "^4.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"prettier-eslint-cli": "^5.0.0",
"pretty-quick": "^2.0.1"
},
"heroku-run-build-script": true
}