-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "project-leonel-machava",
"version": "0.0.1",
"private": true,
"description": "TopTal's Leonel Machava Project",
"main": "server/app.js",
"directories": {
"test": "test"
},
"engines": {
"node": "4.2.2"
},
"dependencies": {
"bcrypt": "^0.8.5",
"bluebird": "^3.0.5",
"body-parser": "^1.14.1",
"bower": "^1.6.5",
"express": "^4.13.3",
"express-validator": "^2.18.0",
"jsonwebtoken": "^5.4.1",
"mongoose": "^4.2.4"
},
"devDependencies": {
"chai": "^3.4.1",
"del": "^2.1.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-if": "^2.0.0",
"gulp-jshint": "^1.12.0",
"gulp-minify-css": "^1.2.1",
"gulp-remove-code": "^1.0.2",
"gulp-uglify": "^1.4.2",
"jshint-stylish": "^2.1.0",
"mocha": "^2.3.4",
"supertest": "^1.1.0"
},
"scripts": {
"postinstall": "bower install && gulp build",
"test": "gulp test",
"start": "node server/app",
"start-local": "NODE_ENV=local node server/app",
"start-test": "NODE_ENV=test node server/app",
"test-api": "mocha test/api",
"test-api-cov": "istanbul cover _mocha -- -R spec test/api",
"test-e2e": "protractor test/e2e/conf.js"
},
"repository": {
"type": "git",
"url": "[email protected]:tomislav.bacinger/project-leonel-machava.git"
},
"author": "Leonel Machava <[email protected]>",
"license": "UNLICENSED"
}