-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
{
"name": "docman",
"version": "1.0.0",
"description": "A document management application",
"engines": {
"node": "7"
},
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "babel server --out-dir dist/ && node dist/server.js "
},
"repository": {
"type": "git",
"url": "git+https://github.com/andela-obamidele/docman.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andela-obamidele/docman/issues"
},
"homepage": "https://github.com/andela-obamidele/docman#readme",
"devDependencies": {
"chai": "^4.1.0",
"coveralls": "^2.13.1",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"gulp-eslint": "^4.0.0",
"gulp-inject-modules": "^1.0.0",
"gulp-sourcemaps": "^2.6.0",
"mocha": "^3.4.2"
},
"dependencies": {
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.1",
"gulp-nodemon": "^2.2.1",
"gulp-spawn-mocha": "^3.3.1",
"gulp-uglify": "^3.0.0",
"istanbul": "^1.0.0-alpha.2",
"jsonwebtoken": "^7.4.1",
"morgan": "^1.8.2",
"nodemon": "^1.11.0",
"pg": "^7.0.2",
"sequelize": "^4.4.2",
"sequelize-cli": "^2.7.0",
"supertest": "^3.0.0"
}
}