-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.7 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.7 KB
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
{
"name": "dman",
"version": "1.0.0",
"description": "A Document Management System",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production gulp build && gulp serve",
"start:dev": "NODE_ENV=development gulp serve",
"build": "gulp build",
"test": "NODE_ENV=test gulp build && gulp coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vynessa/dman.git"
},
"keywords": [
"document manager",
"api",
"Node Js",
"express",
"gulp",
"ecmascript6",
"learning",
"solution"
],
"author": "Vanessa Ejikeme",
"license": "ISC",
"bugs": {
"url": "https://github.com/vynessa/dman/issues"
},
"homepage": "https://github.com/vynessa/dman#readme",
"devDependencies": {
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"supertest": "^3.0.0"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"chai": "^4.1.1",
"dotenv": "^4.0.0",
"expect": "^1.20.2",
"express": "^4.15.3",
"express-validator": "^3.2.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-babel-istanbul": "^1.6.0",
"gulp-coveralls": "^0.1.4",
"gulp-exit": "0.0.2",
"gulp-inject-modules": "^1.0.0",
"gulp-jasmine-node": "^1.0.7",
"gulp-nodemon": "^2.2.1",
"gulp-uglify": "^3.0.0",
"jsonwebtoken": "^7.4.1",
"mongoose": "^4.11.4",
"morgan": "^1.8.2",
"pg": "^6.4.0",
"pg-hstore": "^2.3.2",
"sequelize": "^4.4.2",
"supertest": "^3.0.0"
}
}