This repository has been archived by the owner on Feb 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.84 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": "@moppler/darkcurse",
"version": "1.0.0",
"description": "Open Source text-based MMO aimed at raising money for charity.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "nodemon --exec ts-node src/server.ts",
"test": "jest",
"migrate": "db-migrate up"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Moppler/DarkCurse.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"types": "types/typings.d.ts",
"bugs": {
"url": "https://github.com/Moppler/DarkCurse/issues"
},
"homepage": "https://github.com/Moppler/DarkCurse#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^16.11.9",
"@types/node-cron": "^3.0.0",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-jest": "^27.3.1",
"chalk": "^4.1.2",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"eslint": "^8.4.1",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
},
"dependencies": {
"@types/marked": "^4.0.7",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bootstrap-toaster": "^5.2.0-beta1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.1",
"express-handlebars": "^6.0.1",
"express-jwt": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.14",
"marked": "^4.1.1",
"node-cron": "^3.0.0",
"pg": "^8.7.1",
"pino": "^7.4.0",
"uuid": "^8.3.2"
}
}