forked from commitsto/commits.to
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.13 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
{
"name": "promises",
"version": "0.9.0",
"description": "Commitment tracker",
"repository": "commitsto/commits.to",
"main": "app/express.js",
"engines": {
"node": "8.11.1"
},
"scripts": {
"eslint": "eslint ./",
"eslint:fix": "eslint ./ --fix",
"start": "node babel.js",
"start:dev": "nodemon babel.js",
"start:dev:debug": "DEBUG=sequelize* nodemon babel.js",
"start:dev:vscode": "nodemon --nolazy --inspect-brk=9229 babel.js",
"test": "MOCHA_FILE=tmp/test-results/mocha/results.xml NODE_ENV=test nyc mocha -u bdd-lazy-var/global -R mocha-multi --reporter-options dot=-,mocha-junit-reporter=- ./test/**/*",
"test:watch": "npm test -- --watch",
"test:coverage": "nyc report --reporter=text-lcov > tmp/test-results/coverage.lcov"
},
"dependencies": {
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"express-subdomain-handler": "^0.1.0",
"express-useragent": "^1.0.12",
"ipapi.co": "^0.2.3",
"lodash": "^4.17.10",
"mailgun-js": "^0.18.0",
"moment": "^2.22.1",
"moment-business-days": "^1.0.6",
"moment-timezone": "^0.5.16",
"mysql": "^2.15.0",
"node-sass-middleware": "^0.11.0",
"pg": "^7.4.2",
"pinkie-promise": "^2.0.1",
"postmark": "^1.6.1",
"sequelize": "^4.37.6",
"sherlockjs": "^1.4.0",
"sweetalert2": "^7.19.3",
"winston": "^2.4.2",
"winston-console-formatter": "^1.0.0-beta.3",
"winston-papertrail": "^1.0.5"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015-node6": "^0.4.0",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"bdd-lazy-var": "^2.2.3",
"chai": "^4.1.2",
"codecov": "^3.0.1",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"given2": "^2.1.5",
"mocha": "^5.1.1",
"mocha-junit-reporter": "^1.17.0",
"mocha-multi": "^1.0.1",
"nodemon": "^1.17.3",
"nyc": "^11.7.1",
"sinon": "^5.0.4",
"sinon-chai": "^3.0.0"
},
"babel": {
"presets": [
"es2015-node6",
"stage-1"
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread",
"transform-decorators-legacy",
"transform-function-bind",
"syntax-async-functions",
"transform-async-to-generator",
"transform-regenerator"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"all": true,
"sourceMap": false,
"instrument": false,
"require": [
"babel-core/register"
]
},
"license": "MIT"
}