-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.98 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
{
"name": "aged-credit",
"version": "1.0.0",
"description": "My app description",
"scripts": {
"build": "gulp build",
"build:production": "npm --prefix public/ i && gulp build --production",
"deploy": "npm test && git push heroku master",
"lint": "jshint --config ./.jshintrc --extract=auto --exclude /node_modules,app/test/interface/node_modules,public/node_modules,public/js,app/src/vendor,app/test/coverage .; exit 0",
"postinstall": "npm run build:production",
"start": "concurrently \"mongod\" \"node server.js\" \"gulp\"",
"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",
"compression": "^1.6.2",
"concurrently": "^3.5.0",
"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",
"moment": "^2.12.0",
"mongoose": "^4.4.8",
"morgan": "^1.7.0",
"nodemailer": "^2.3.0",
"request": "^2.69.0",
"vinyl-buffer": "^1.0.0",
"yargs": "^4.3.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.1.0",
"jshint": "^2.9.5",
"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"
}
}