-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.19 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
70
71
72
73
74
75
76
77
78
{
"name": "roihuapp",
"version": "0.0.0",
"description": "",
"main": "src/server/bootstrap.js",
"scripts": {
"start": "node .",
"create-user": "babel-node scripts/create-user.js",
"dev-login": "babel-node scripts/dev-login.js",
"test": "npm run linter && npm run test-mocha",
"pretest": "npm run seed-database",
"linter": "eslint --ext js src test scripts",
"test-mocha": "mocha --compilers js:babel-core/register ./test --recursive --timeout 5000",
"seed-database": "babel-node scripts/seed-database.js",
"create-fixtures": "babel-node scripts/create-fixtures.js",
"admintools": "babel-node scripts/admintools.js",
"console": "babel-node"
},
"dependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.3.15",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-node4": "^2.0.2",
"babel-register": "^6.3.13",
"bluebird": "^3.0.5",
"body-parser": "^1.14.1",
"compression": "^1.6.0",
"cors": "^2.7.1",
"errorhandler": "^1.4.2",
"history": "^1.17.0",
"inquirer": "^1.1.2",
"lodash": "^4.6.1",
"loopback": "^2.25.0",
"loopback-boot": "^2.14.2",
"loopback-component-explorer": "^2.4.0",
"loopback-connector-postgresql": "^2.4.0",
"loopback-datasource-juggler": "^2.43.0",
"morgan": "^1.7.0",
"newrelic": "^1.28.3",
"nodemailer": "^2.3.2",
"nodemailer-ses-transport": "^1.3.0",
"passport-saml": "^0.14.0",
"serve-favicon": "^2.3.0",
"superagent": "^1.7.2",
"superagent-as-promised": "^3.2.1",
"uuid": "^2.0.1",
"uuid-validate": "0.0.2"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"commander": "^2.9.0",
"eslint": "^1.10.2",
"mocha": "^2.3.4",
"supertest": "^1.2.0",
"supertest-as-promised": "^3.1.0"
},
"engines": {
"node": "~4.2.2",
"npm": "~2.14.7"
},
"repository": {
"type": "git",
"url": "[email protected]:partio-scout/fj16-roihuapp-backend.git"
},
"babel": {
"presets": [
"es2015-node4"
],
"plugins": [
"add-module-exports"
]
},
"private": true,
"licence": "UNLICENCED"
}