-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2 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": "backend",
"version": "2.0.10",
"main": "./build/index.js",
"description": "This is Sample Backend Project to build your own Node.js Express Mongodb API using TypeScript.",
"scripts": {
"build": "rimraf build && tsc --skipLibCheck",
"start": "rimraf build && tsc --skipLibCheck && node ./build/config/server/index.js",
"ts:watch": "tsc -w",
"test": "NODE_ENV=test mocha -r ts-node/register test/index.js --exit"
},
"files": [
"src"
],
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.507.0",
"axios": "^1.6.7",
"bcrypt": "5.1.1",
"body-parser": "^1.20.2",
"compression": "1.7.4",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"dotenv": "^16.3.1",
"express": "4.18.2",
"express-rate-limit": "^7.0.0",
"helmet": "7.0.0",
"joi": "17.9.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.0",
"pino": "^8.15.1",
"pino-pretty": "^10.2.0",
"software": "^0.0.1",
"ts-node": "^10.9.1",
"twilio": "^5.0.0-rc.1",
"util": "0.12.5",
"web3": "^4.2.2"
},
"devDependencies": {
"@types/bcrypt": "5.0.0",
"@types/body-parser": "1.19.2",
"@types/chai": "4.3.6",
"@types/compression": "1.7.3",
"@types/cookie-parser": "1.4.4",
"@types/cors": "2.8.14",
"@types/debug": "4.1.8",
"@types/ejs": "3.1.2",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "20.6.0",
"@types/supertest": "2.0.12",
"@types/swagger-jsdoc": "6.0.1",
"@types/swagger-ui-express": "4.1.3",
"@types/yeoman-generator": "5.2.11",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"chai": "4.3.8",
"eslint": "8.49.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.28.1",
"jsdoc": "^4.0.2",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"source-map-loader": "4.0.1",
"supertest": "6.3.3",
"swagger-jsdoc": "6.2.8",
"swagger-ui-express": "5.0.0",
"typescript": "5.2.2"
}
}