-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
66 lines (66 loc) · 2.5 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "escapp",
"version": "1.0.0",
"scripts": {
"start": "node ./bin/www",
"start_production": "sudo NODE_ENV=production node ./bin/www",
"start_production_pm2": "sudo pm2 start ecosystem.config.js",
"dev": "DEBUG=escapp nodemon bin/www -e sass,js,json --ignore public/js/ --ignore public/apps/ --ignore migrations --ignore seeders --ignore test/ --exec \"npm run css && npm run lint && node\"",
"dev-windows": "nodemon bin/www -e sass,js,json --ignore public/js/ --ignore public/apps/ --ignore migrations --ignore seeders --ignore test/ --exec \"npm run css && npm run lint && node\"",
"test": "DATABASE_URL=postgres://loguser:password@localhost/er_jest TEST=true jest --forceExit",
"test:watch": "DATABASE_URL=postgres://loguser:password@localhost/er_jest TEST=true jest --watchAll",
"create_local": "sequelize db:create --url $(grep DATABASE_URL .env | cut -d '=' -f2)",
"migrate_local": "node db_migrate.js",
"undo_last_migration_local": "sequelize db:migrate:undo --url $(grep DATABASE_URL .env | cut -d '=' -f2)",
"seed_local": "sequelize db:seed:all --url $(grep DATABASE_URL .env | cut -d '=' -f2)",
"css": "sass public/stylesheets/style.sass public/stylesheets/style.css",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"unused": "unused-exports --path ./ --ignore node_modules/ --ignore public --ignore migrations"
},
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"body-parser": "^1.19.2",
"cloudinary": "^1.28.1",
"compression": "^1.7.4",
"connect-session-sequelize": "^7.1.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^7.0.0",
"ejs": "^3.1.7",
"eslint": "^8.14.0",
"express": "^4.17.3",
"express-flash": "^0.0.2",
"express-partials": "^0.3.0",
"express-session": "^1.17.2",
"global": "^4.3.2",
"http-errors": "~1.6.2",
"i18n-express": "^1.1.3",
"json-2-csv": "^3.17.0",
"method-override": "^3.0.0",
"morgan": "^1.9.1",
"multer": "^1.4.4",
"node-fetch": "^2.6.7",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.16",
"pg": "^8.7.3",
"sass": "^1.51.0",
"sequelize": "^6.19.0",
"sequelize-cli": "^6.4.1",
"socket.io": "^4.5.0",
"supertest": "^4.0.2",
"supertest-session": "^4.0.0",
"uuid-token-generator": "^1.0.0",
"zombie": "^6.1.4"
},
"devDependencies": {
"jest": "^28.0.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}