-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 969 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 969 Bytes
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
{
"name": "subscription-tracker",
"version": "0.0.0",
"private": true,
"type": "module",
"imports": {
"#config/*": "./config/*",
"#controllers/*": "./controllers/*",
"#database/*": "./database/*",
"#middlewares/*": "./middlewares/*",
"#models/*": "./models/*",
"#routes/*": "./routes/*",
"#utils/*": "./utils/*"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js"
},
"dependencies": {
"@arcjet/inspect": "^1.0.0-beta.15",
"@arcjet/node": "^1.0.0-beta.15",
"@upstash/workflow": "^0.2.22",
"bcryptjs": "^3.0.3",
"cookie-parser": "~1.4.4",
"dayjs": "^1.11.19",
"debug": "~2.6.9",
"dotenv": "^17.2.3",
"express": "~4.16.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^7.0.0",
"mongoose": "^8.19.3",
"morgan": "~1.9.1",
"nodemailer": "^7.0.10"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"globals": "^16.5.0"
}
}