-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.27 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
67
68
69
{
"name": "myMirror",
"version": "1.0.0",
"main": "server/server.js",
"engines": {
"node": "6.9.5",
"npm": "3.10.10"
},
"scripts": {
"lint": "eslint .",
"test:backend": "NODE_ENV=test istanbul cover mocha -- tests/**/*.js -R spec",
"test:frontend": "cd client && npm test",
"test": "npm run test:backend && npm run test:frontend",
"build:client": "cd client && npm run build",
"migrate:create": "db-migrate create --sql-file",
"migrate:down": "db-migrate down -e $NODE_ENV",
"migrate:up": "db-migrate up -e $NODE_ENV",
"docker:db-migrate:up": "docker-compose exec server bash -c './node_modules/.bin/db-migrate up'",
"docker:db-migrate:down": "docker-compose exec server bash -c './node_modules/.bin/db-migrate down'",
"posttest": "npm run lint && nsp check",
"start": "node .",
"server:watch": "nodemon -L server/server.js --ignore tests/ --ignore client/",
"client:watch": "if test ./client; then cd client && yarn start; fi",
"start:prod": "NODE_ENV=production pm2 kill && pm2 startOrRestart pm2.yml",
"stop": "pm2 kill",
"postinstall": "if test ./client; then cd client && yarn && yarn build; fi"
},
"dependencies": {
"compression": "^1.0.3",
"connect-history-api-fallback": "1.3.0",
"cors": "^2.8.1",
"db-migrate": "^0.10.0-beta.20",
"db-migrate-pg": "^0.1.11",
"helmet": "^3.1.0",
"jsonwebtoken": "^7.2.1",
"loopback": "^3.0.0",
"loopback-boot": "^2.6.5",
"loopback-component-explorer": "^4.0.0",
"loopback-connector-postgresql": "^2.7.0",
"loopback-datasource-juggler": "^2.53.0",
"loopback-ds-timestamp-mixin": "3.4.0",
"pg": "^6.1.0",
"pm2": "^2.4.2",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^1.0.1",
"vagrant": "^0.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.13.1",
"eslint-config-loopback": "^4.0.0",
"eslint-config-walmart": "^1.2.4",
"eslint-plugin-filenames": "^1.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"nsp": "^2.1.0",
"shipit-cli": "^3.0.0",
"shipit-deploy": "^2.5.1",
"sinon": "^2.0.0",
"sinon-chai": "^2.8.0"
},
"repository": {
"type": "",
"url": ""
},
"license": "UNLICENSED",
"description": "myMirror"
}