-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
19 lines (19 loc) · 1019 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "work-commute",
"version": "0.1.0",
"private": true,
"prettier": {
"singleQuote": true,
"arrowParens": "always",
"trailingComma": "all"
},
"scripts": {
"deploy": "now --prod",
"dump-prod-db": "mongoexport --host Cluster0-shard-0/cluster0-shard-00-00-uk48d.mongodb.net:27017,cluster0-shard-00-01-uk48d.mongodb.net:27017,cluster0-shard-00-02-uk48d.mongodb.net:27017 --ssl --username $DB_USERNAME --password $DB_PASSWORD --authenticationDatabase admin --db work-commute --collection workTimetable --type json --out prod_dump.json",
"populate-dev-db": "mongoimport --host Cluster0-shard-0/cluster0-shard-00-00-uk48d.mongodb.net:27017,cluster0-shard-00-01-uk48d.mongodb.net:27017,cluster0-shard-00-02-uk48d.mongodb.net:27017 --ssl --username $DB_USERNAME --password $DB_PASSWORD --authenticationDatabase admin --db work-commute-dev --collection workTimetable --type json --file ./prod_dump.json"
},
"dependencies": {},
"devDependencies": {
"prettier": "^1.19.1"
}
}