-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.77 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
{
"name": "Citizen-server",
"version": "0.0.3",
"description": "Rest API server for Citizen apps",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "tsc && node --unhandled-rejections=strict ./dist/app.js",
"dev": "tsc --watch && nodemon --unhandled-rejections=strict ./dist/app.js",
"start-dev": "npx ts-node-dev --respawn --transpileOnly ./src/app.ts",
"debug": "export DEBUG=* && npm start",
"test": "mocha -r ts-node/register 'test/**/*.test.ts' --unhandled-rejections=strict",
"test-debug": "export DEBUG=* && npm test"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"REST",
"API",
"ExpressJS",
"NodeJS"
],
"author": "Christopher Masaka",
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"@types/swagger-ui-express": "^4.1.3",
"argon2": "^0.27.0",
"cors": "^2.8.5",
"debug": "^4.2.0",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"express-jsdoc-swagger": "^1.8.0",
"express-validator": "^6.9.2",
"express-winston": "^4.1.0",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"long": "^5.2.3",
"mongoose": "^7.2.2",
"shortid": "^2.2.16",
"ts-node-dev": "^2.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/cors": "^2.8.7",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.2.0",
"@types/node": "^18.19.130",
"@types/shortid": "0.0.29",
"@types/supertest": "^2.0.10",
"chai": "^4.3.3",
"mocha": "^8.3.0",
"nodemon": "^2.0.22",
"source-map-support": "^0.5.16",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"tslint": "^6.0.0",
"typescript": "^5.1.3"
}
}