-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"name": "idp-server",
"version": "1.0.0",
"description": "Github repository containing IDP server implementation in Node.js for applications I create",
"main": "src/index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "cross-env NODE_ENV=dev nodemon src/server.ts",
"test": "cross-env NODE_ENV=test jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-ses": "^3.699.0",
"@types/nodemailer": "^6.4.17",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"express-mysql-session": "^3.0.3",
"express-session": "^1.18.1",
"mysql2": "^3.11.4",
"nodemailer": "^6.9.16",
"nodemon": "^3.1.7",
"validator": "^13.12.0"
},
"devDependencies": {
"@testcontainers/mysql": "^10.14.0",
"@tsconfig/node20": "^20.1.4",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/jest": "^29.5.14",
"@types/mysql": "^2.15.26",
"@types/node": "^22.9.0",
"@types/supertest": "^6.0.2",
"@types/validator": "^13.12.2",
"cross-env": "^7.0.3",
"express": "^4.21.1",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"testcontainers": "^10.14.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}