-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "boleta",
"version": "0.1.1",
"author": "Nicolás C. González (https://github.com/n1c0saurio/)",
"homepage": "https://github.com/n1c0saurio/boleta/blob/main/README.md",
"bugs": {
"url": "https://github.com/n1c0saurio/boleta/issues"
},
"license": "GPL-3.0-or-later",
"private": true,
"scripts": {
"docker-init": "npx sequelize-cli db:migrate && npx sequelize-cli db:seed:all && npm start",
"start": "export NODE_ENV=production && node ./bin/www",
"dev": "export NODE_ENV=development && nodemon --trace-warnings ./bin/www",
"test": "export NODE_ENV=test && jest --watchAll"
},
"dependencies": {
"@dinero.js/currencies": "^2.0.0-alpha.14",
"bcrypt": "^5.1.0",
"bootstrap": "^5.3.1",
"bootstrap-icons": "^1.10.5",
"cookie-parser": "~1.4.6",
"debug": "~4.3.4",
"dinero.js": "^2.0.0-alpha.14",
"dotenv": "^16.3.1",
"express": "~4.18.2",
"express-session": "^1.17.3",
"http-errors": "~2.0.0",
"i18next": "^23.5.1",
"i18next-fs-backend": "^2.2.0",
"i18next-http-middleware": "^3.4.1",
"morgan": "~1.10.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg": "^8.11.1",
"pug": "3.0.2",
"sequelize": "^6.32.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"jest": "^29.6.0",
"nodemon": "^2.0.22",
"sequelize-cli": "^6.6.1",
"supertest": "^6.3.3"
}
}