-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.8 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.8 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "galilee-server",
"version": "0.0.1",
"description": "Scripture Engagement Application: Server",
"main": "main.js",
"directories": {
"doc": "doc"
},
"scripts": {
"knex:migrate:dev": "GALILEE=development knex --env development migrate:latest",
"knex:migrate:mysql": "GALILEE=mysql knex --env mysql migrate:latest",
"knex:migrate:prod": "GALILEE=production knex --env production migrate:latest",
"knex:seed:dev": "GALILEE=development knex --env development seed:run",
"knex:seed:mysql": "GALILEE=mysql knex --env mysql seed:run",
"knex:seed:prod": "GALILEE=production knex --env production seed:run",
"start": "echo Please run with start:dev or start:prod",
"start:dev": "GALILEE=development node main.js",
"start:mysql": "GALILEE=mysql node main.js",
"start:prod": "GALILEE=production node main.js",
"start:staging": "GALILEE=staging node main.js",
"test": "GALILEE=development lab --verbose --transform node_modules/lab-babel --sourcemaps --globals __core-js_shared__",
"test-cov": "GALILEE=development lab --transform node_modules/lab-babel --globals __core-js_shared__ --reporter html --output foo-coverage.html",
"watch:dev": "GALILEE=development nodemon main.js",
"watch:prod": "GALILEE=production nodemon main.js",
"watch:staging": "GALILEE=staging nodemon main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quantum-bits/galilee.git"
},
"author": "Tom Nurkkala",
"license": "MIT",
"bugs": {
"url": "https://github.com/quantum-bits/galilee/issues"
},
"homepage": "https://github.com/quantum-bits/galilee#readme",
"babel": {
"presets": [
"stage-0"
],
"plugins": [
"check-es2015-constants",
"transform-es2015-arrow-functions",
"transform-es2015-block-scoped-functions",
"transform-es2015-block-scoping",
"transform-es2015-computed-properties",
"transform-es2015-destructuring",
"transform-es2015-duplicate-keys",
"transform-class-properties",
"transform-es2015-for-of",
"transform-es2015-function-name",
"transform-es2015-literals",
"transform-es2015-modules-commonjs",
"transform-es2015-object-super",
"transform-es2015-parameters",
"transform-es2015-shorthand-properties",
"transform-es2015-spread",
"transform-es2015-sticky-regex",
"transform-es2015-template-literals",
"transform-es2015-typeof-symbol",
"transform-es2015-unicode-regex",
"transform-async-to-generator"
]
},
"dependencies": {
"bcrypt": "^1.0.2",
"blipp": "^2.3.0",
"bluebird": "^3.4.7",
"boom": "^5.1.0",
"chalk": "^2.0.1",
"debug": "^2.6.1",
"good": "^7.1.0",
"good-console": "^6.4.0",
"good-squeeze": "^5.0.1",
"hapi": "^16.1.0",
"hapi-auth-jwt2": "^7.2.4",
"hoek": "^4.1.0",
"inert": "^4.1.0",
"joi": "^10.2.2",
"knex": "^0.13.0",
"lodash": "^4.17.4",
"lout": "^10.0.1",
"marked": "^0.3.6",
"moment": "^2.17.1",
"moment-range": "^3.0.2",
"mysql": "^2.14.0",
"nconf": "^0.8.4",
"objection": "^0.8.4",
"pg": "^6.1.2",
"pm2": "^2.4.0",
"random-js": "^1.0.8",
"rx": "^4.1.0",
"superagent": "^3.4.4",
"tv": "^6.1.0",
"uuid": "^3.0.1",
"vision": "^4.1.1"
},
"devDependencies": {
"@types/knex": "0.0.56",
"babel-cli": "^6.24.1",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.24.1",
"babel-plugin-transform-es2015-computed-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-duplicate-keys": "^6.24.1",
"babel-plugin-transform-es2015-for-of": "^6.23.0",
"babel-plugin-transform-es2015-function-name": "^6.24.1",
"babel-plugin-transform-es2015-literals": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-plugin-transform-es2015-object-super": "^6.24.1",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-es2015-sticky-regex": "^6.24.1",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-es2015-typeof-symbol": "^6.23.0",
"babel-plugin-transform-es2015-unicode-regex": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"code": "^4.0.0",
"faker": "^4.1.0",
"jsonwebtoken": "^7.4.2",
"lab": "^14.1.0",
"lab-babel": "^1.1.1",
"nodemon": "^1.11.0"
}
}