This repository was archived by the owner on Jul 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.32 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.32 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "perseus",
"version": "2.0.0",
"description": "NodeJS based backend for Seocraft Network",
"main": "src/app.ts",
"scripts": {
"build": "tsc",
"postbuild": "npx ts-node ./tools/build",
"heroku-postbuild": "npm run build",
"start": "nodemon",
"load-models": "ts-node --transpile-only ./tests/generate.ts",
"inspect": "nodemon --inspect src/app.ts",
"test": "jest",
"lint": "npm run lint:js ",
"lint:eslint": "eslint --ignore-path .gitignore --ext .ts",
"lint:js": "npm run lint:eslint src/",
"lint:fix": "npm run lint:js -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SeocraftNetwork/EpsilonBackend.git"
},
"author": "Ian Castaño",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/SeocraftNetwork/Perseus/issues"
},
"homepage": "https://github.com/SeocraftNetwork/Perseus#readme",
"dependencies": {
"agenda": "^3.1.0",
"argon2": "^0.26.2",
"body-parser": "^1.18.2",
"celebrate": "^12.1.1",
"cors": "^2.8.4",
"dotenv": "^8.2.0",
"dotty": "^0.1.0",
"event-dispatch": "^0.4.1",
"express": "^4.17.1",
"express-jwt": "^5.3.3",
"fs": "0.0.1-security",
"geoip-lite": "^1.4.2",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^5.9.17",
"mongoose-autopopulate": "^0.12.2",
"mongoose-delete": "^0.5.2",
"nodemailer": "^6.4.8",
"path": "^0.12.7",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.12",
"shelljs": "^0.8.4",
"ts-mongoose-pagination": "^1.1.2",
"typedi": "^0.8.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/agenda": "^2.0.8",
"@types/express": "^4.17.6",
"@types/geoip-lite": "^1.1.31",
"@types/jest": "^25.2.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.155",
"@types/mongoose": "^5.7.22",
"@types/node": "^14.0.11",
"@types/nodemailer": "^6.4.0",
"@types/redis": "^2.8.22",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
}
}