-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·126 lines (126 loc) · 3.79 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
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
{
"name": "church",
"version": "1.0.0",
"description": "church api for app",
"main": "server/main.js",
"readme": "README.md",
"repository": {
"url": "https://gitlab.com/danielprado.ad/church-api",
"type": "git"
},
"scripts": {
"precommit": "concurrently --prefix \"[{name}]\" --names \"LINT,TSC\" -c \"bgBlue.bold,bgMagenta.bold\" \"yarn gulp server-typescript-lint\" \"yarn tsc -- --noEmit\"",
"postmerge": "yarn develop-update",
"start": "node bin/main.js",
"pretest": "yarn compile",
"test": "NODE_ENV=test mocha 'bin/**/*.spec.js' --reporter spec --timeout 3000",
"test-win": "set NODE_ENV=test && mocha bin/**/*.spec.js --reporter spec --timeout 3000",
"just-test": "NODE_ENV=test mocha 'bin/**/*.spec.js' --bail --watch --reporter spec --timeout 3000",
"develop": "gulp",
"develop-update": "yarn && bower install --allow-root",
"compile": "gulp server-compile",
"migrate": "knex migrate:latest && yarn seed",
"seed": "knex seed:run",
"publish-deps": "yarn --silent && bower install --allow-root --quiet",
"publish": "gulp publish",
"docker": "sh docker/prod/publish.sh",
"bower": "bower",
"gulp": "gulp",
"knex": "knex",
"tsc": "tsc",
"mocha": "mocha"
},
"author": {
"name": "Daniel Prado",
"email": "[email protected]"
},
"bin": {
"knex": "./node_modules/knex/bin/cli.js",
"gulp": "./node_modules/gulp/bin/gulp",
"bower": "./node_modules/bower/bin/bower",
"mocha": "./node_modules/mocha/bin/mocha"
},
"license": "ISC",
"dependencies": {
"@vtex/phone": "4.5.4",
"axios": "^0.17.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.18.2",
"connect-timeout": "1.9.0",
"datejs": "1.0.0-rc3",
"express": "4.16.2",
"fb": "2.0.0",
"googleapis": "23.0.0",
"inline-css": "2.2.3",
"joi": "13.0.2",
"jsonwebtoken": "8.1.0",
"knex": "0.14.2",
"lodash": "4.17.4",
"mailgun-js": "0.13.1",
"marked": "0.3.7",
"morgan": "1.9.0",
"objection": "git+https://[email protected]/danieloprado/objection.js",
"password-generator": "2.2.0",
"pg": "7.4.0",
"pug": "2.0.0-rc.4",
"raven": "2.3.0",
"request": "2.83.0",
"source-map-support": "0.5.0",
"tslib": "1.8.1",
"uuid": "3.1.0"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "1.16.8",
"@types/chai": "4.0.10",
"@types/connect-timeout": "0.0.33",
"@types/datejs": "0.0.30",
"@types/express": "4.0.39",
"@types/fb": "0.0.23",
"@types/inline-css": "0.0.30",
"@types/joi": "13.0.3",
"@types/jsonwebtoken": "7.2.5",
"@types/knex": "0.0.67",
"@types/lodash": "4.14.91",
"@types/mocha": "2.2.44",
"@types/morgan": "1.7.35",
"@types/phone": "1.0.3",
"@types/pug": "2.0.4",
"@types/raven": "2.1.2",
"@types/request": "2.0.9",
"@types/uuid": "3.4.3",
"angular-material-picker": "0.7.7",
"babel-core": "6.26.0",
"babel-preset-es2015": "6.24.1",
"bower": "1.8.2",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"concurrently": "3.5.1",
"eslint": "4.13.1",
"gulp": "3.9.1",
"gulp-angular-templatecache": "2.0.0",
"gulp-autoprefixer": "4.0.0",
"gulp-babel": "7.0.0",
"gulp-concat": "2.6.1",
"gulp-eslint": "4.0.0",
"gulp-inline-css": "3.1.1",
"gulp-livereload": "3.8.1",
"gulp-nodemon": "2.2.1",
"gulp-pug": "3.3.0",
"gulp-rename": "1.2.2",
"gulp-replace": "0.6.1",
"gulp-sass": "3.1.0",
"gulp-sequence": "0.4.6",
"gulp-sourcemaps": "2.6.1",
"gulp-tslint": "8.1.2",
"gulp-uglify": "3.0.0",
"husky": "0.14.3",
"mocha": "4.0.1",
"node-sass": "4.7.2",
"rimraf": "2.6.2",
"sqlite3": "3.1.13",
"tslint": "5.8.0",
"tslint-eslint-rules": "4.1.1",
"typescript": "2.6"
}
}