-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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
{
"name": "notification-center",
"version": "1.0.0",
"main": "./build/server",
"repository": "[email protected]:vbss-io/notification-center.git",
"author": "Vitor Bastos <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup --config",
"dev": "nodemon --config nodemon-dev.json",
"lint": "eslint ./src --ext .ts",
"start": "node .",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/nodemailer": "^6.4.16",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.2.1",
"eslint-plugin-no-relative-import-paths": "^1.5.4",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"rollup": "^4.22.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-async-errors": "^3.1.1",
"nodemailer": "^6.9.15",
"ts-node": "^10.9.2",
"zod": "^3.23.8"
}
}