-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.65 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.65 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
57
58
59
60
61
62
{
"name": "ejemplo",
"version": "1.0.0",
"description": "",
"main": "webapp.js",
"scripts": {
"dev": "concurrently \"npm run css:watch\" \"nodemon webapp.js\"",
"test": "jest --verbose",
"test:coverage": "jest --coverage",
"css:build": "tailwindcss -i ./public/stylesheets/input.css -o ./public/stylesheets/styles.css",
"css:watch": "tailwindcss -i ./public/stylesheets/input.css -o ./public/stylesheets/styles.css --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.19.3",
"alpinejs": "^3.15.9",
"bcrypt": "^6.0.0",
"dotenv": "^17.3.1",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.1",
"express-fileupload": "^1.1.7-alpha.3",
"express-flash": "0.0.2",
"express-rate-limit": "^8.3.2",
"express-session": "^1.17.1",
"helmet": "^8.1.0",
"joi": "^18.1.2",
"jsonwebtoken": "^9.0.3",
"mysql2": "^3.20.0",
"node-cache": "^5.1.2",
"nodemailer": "^8.0.4",
"nodemon": "^3.1.14",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"prisma": "^6.19.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.2",
"concurrently": "^9.2.1",
"jest": "^30.3.0",
"supertest": "^7.2.2",
"tailwindcss": "^4.2.2"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/__tests__/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/setup.js"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/"
]
}
}