-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.99 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": "tccp-server",
"version": "1.1.0",
"description": "Server for The CodeCoach Projct ",
"main": "app.ts",
"type": "module",
"scripts": {
"start:run": "nodemon dist/app.js",
"start": "concurrently npm:start:*",
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"sim": "node dist/sim.js -i",
"destroy": "node dist/sim.js -d",
"doc": "typedoc --out docs '*/*.ts'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ballyalley-o/tccp-server.git"
},
"author": "Bally Lomibao <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ballyalley-o/tccp-server/issues"
},
"homepage": "https://github.com/ballyalley-o/tccp-server#readme",
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/clipboardy": "^2.0.1",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.4.4",
"@types/hpp": "^0.2.6",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.19",
"@types/node-geocoder": "^4.2.6",
"@types/nodemailer": "^6.4.14",
"bcryptjs": "^2.4.3",
"clipboardy": "^4.0.0",
"colors": "^1.4.0",
"concurrently": "^8.2.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.4",
"express": "^4.18.2",
"express-fileupload": "^1.4.3",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.5",
"good-logs": "^1.2.3",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.1.3",
"morgan": "^1.10.0",
"node-geocoder": "^4.3.0",
"node-mailer": "^0.1.1",
"slugify": "^1.6.6",
"xss": "^1.0.14"
},
"devDependencies": {
"bson-objectid": "^2.0.4",
"nodemon": "^3.0.3",
"reflect-metadata": "^0.2.1",
"tsc-alias": "^1.8.10",
"typedoc": "^0.25.8"
}
}