-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.57 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
{
"name": "21_milestoneproject",
"version": "1.1.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "dotenvx run --env-file=.env -- nodemon",
"start": "dotenvx run --env-file=.env.production -- nodemon",
"build": "tsc && vite build",
"less": "less-watch-compiler ./public/less ./public/styles",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"type-check": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Arthur Ferreira",
"license": "ISC",
"dependencies": {
"@dotenvx/dotenvx": "^1.9.1",
"bcryptjs": "^2.4.3",
"connect-mongodb-session": "^5.0.0",
"csurf": "^1.11.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-session": "^1.18.0",
"mongodb": "^6.8.0",
"multer": "^1.4.5-lts.1",
"stripe": "^16.8.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/connect-mongodb-session": "^2.4.7",
"@types/csurf": "^1.11.5",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/mongodb": "^4.0.6",
"@types/multer": "^1.4.12",
"@types/node": "^22.5.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"less": "^4.2.0",
"less-watch-compiler": "^1.16.3",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
},
"overrides": {
"got": "^14.2.1"
}
}