-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "node-stripe-charge",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./src/server/server",
"test": "./node_modules/mocha/bin/_mocha ./test/**/*.js -b",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha ./test/**/*.js",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha ./test/**/*.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"bcryptjs": "^2.3.0",
"body-parser": "~1.18.2",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.3",
"debug": "~3.1.0",
"dotenv": "^5.0.1",
"express": "~4.16.3",
"express-session": "^1.14.0",
"knex": "^0.14.6",
"morgan": "~1.9.0",
"nunjucks": "^3.1.2",
"passport": "0.3.2",
"passport-local": "^1.0.0",
"pg": "~7.4.1",
"stripe": "^5.8.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"coveralls": "^3.0.0",
"gulp-jscs": "^4.0.0",
"gulp-jshint": "^2.0.1",
"gulp-nodemon": "^2.1.0",
"gulp-plumber": "^1.1.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.3",
"jshint-stylish": "^2.2.1",
"mocha": "^5.1.0",
"mocha-jscs": "^5.0.1",
"mocha-jshint": "^2.3.1",
"passport-stub": "^1.1.1",
"run-sequence": "^2.2.1",
"tiny-lr": "^1.1.1"
}
}