-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.69 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
{
"name": "summer-king",
"version": "1.0.0",
"description": "My app description",
"scripts": {
"build": "gulp build",
"build:production": "gulp build --production",
"deploy": "npm test && git push heroku master",
"postinstall": "npm run build:production",
"start": "node server.js",
"test": "npm run test:server && npm run test:client",
"test:client": "karma start app/karma.conf.js --single-run",
"test:server": "mocha --recursive",
"watch": "gulp"
},
"dependencies": {
"async": "^1.5.2",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.15.1",
"bookshelf": "^0.9.2",
"compression": "^1.6.2",
"cookie-parser": "^1.4.1",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-validator": "^2.20.4",
"gulp": "^3.9.1",
"gulp-angular-templatecache": "latest",
"gulp-autoprefixer": "^3.1.0",
"gulp-concat": "latest",
"gulp-csso": "^1.1.0",
"gulp-if": "^2.0.0",
"gulp-ng-annotate": "^2.0.0",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"jsonwebtoken": "^5.7.0",
"knex": "^0.10.0",
"moment": "^2.12.0",
"morgan": "^1.7.0",
"nodemailer": "^2.3.0",
"pg": "^4.5.1",
"request": "^2.69.0",
"vinyl-buffer": "^1.0.0",
"yargs": "^4.3.2"
},
"devDependencies": {
"chai": "^3.5.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.5.5",
"karma-mocha": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.7",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"supertest": "^1.2.0"
},
"engines": {
"node": "6.1.0"
}
}