This repository was archived by the owner on Apr 7, 2019. It is now read-only.
-
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) · 1.55 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.55 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
{
"name": "quero-ajudar",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "cross-env CONFIG_PATH=/etc/triptogo/config.json ./bin/www",
"acc": "cross-env CONFIG_PATH=/etc/triptogo/acc_config.json node ./bin/www",
"dev": "cross-env CONFIG_PATH=/etc/triptogo/dev_config.json node ./bin/www",
"local_dev": "cross-env CONFIG_PATH=./configs/local_dev_config.json NODE_TLS_REJECT_UNAUTHORIZED=0 node ./bin/www",
"local_dev_migrate": "cross-env CONFIG_PATH=./configs/local_dev_config.json node_modules/.bin/sequelize db:migrate",
"local_dev_migrate_undo": "cross-env CONFIG_PATH=./configs/local_dev_config.json node_modules/.bin/sequelize db:migrate:undo:all",
"local_dev_seed": "cross-env CONFIG_PATH=./configs/local_dev_config.json node_modules/.bin/sequelize db:seed:all",
"local_dev_seed_undo": "cross-env CONFIG_PATH=./configs/local_dev_config.json node_modules/.bin/sequelize db:seed:undo:all",
"eslint": "./node_modules/.bin/eslint ."
},
"dependencies": {
"bcrypt": "^1.0.3",
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"cron": "^1.3.0",
"debug": "~2.6.9",
"ejs": "~2.5.7",
"express": "~4.16.0",
"express-session": "^1.15.6",
"express-validator": "^5.1.2",
"http-errors": "~1.6.2",
"i18n": "^0.8.3",
"morgan": "~1.9.0",
"mysql": "^2.15.0",
"nodemailer": "^4.6.4",
"sequelize": "^4.37.6",
"sqlite3": "^4.0.0"
},
"devDependencies": {
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"sequelize-cli": "^4.0.0"
}
}