-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.23 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 4.23 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "hello-books",
"version": "1.0.0",
"description": "Hello-Books is an E-Library application that helps manage the inflow and outflow of books, tracks and monitors user to ensure book is returned as at when due",
"main": "index.js",
"scripts": {
"start": "node ./bin/www",
"start:dev": "nodemon ./bin/www",
"test": "cross-env NODE_ENV=test npm run test:db && mocha --compilers js:babel-register \"tests/**/**.js\" --timeout 100000",
"test:db": "npm run test:db:migrate:undo && sequelize db:migrate --env test",
"test:db:migrate:undo": "sequelize db:migrate:undo:all --env test",
"coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=lcov --reporter=text --reporter=json",
"build": "rm -rf server/dist && babel server/ --out-dir server/dist/",
"slate:build": "cd ./slate && deploy.sh",
"slate:install": "cd ./slate && bundle install",
"slate:start": "cd ./slate && bundle exec middleman server",
"client:install": "cd ./client && npm install",
"client:webpack": "cd ./client && npm run webpack",
"test:single": "mocha ./tests/unit/controllers/test.paginate.js"
},
"nyc": {
"exclude": [
"tests/**/**.js",
"server/models/index.js",
"server/middlewares/index.js",
"server/controllers/index.js",
"server/email/**.js",
"server/email/template/**.js",
"server/migrations/**.js",
"server/seeders/**.js",
"server/config/config.js",
"server/oauth-login/config/**.js",
"server/middlewares/membershipVal.js",
"server/middlewares/isLoggedIn.js",
"server/middlewares/bookCount.js",
"server/middlewares/newPassword.js",
"client/**/**.js",
"slate/**/**.js"
]
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hephzaron/Hello-Books.git"
},
"keywords": [
"TDD",
"Javascript"
],
"author": "Daramola Tobi",
"license": "ISC",
"bugs": {
"url": "https://github.com/hephzaron/Hello-Books/issues"
},
"homepage": "https://github.com/hephzaron/Hello-Books#readme",
"dependencies": {
"async-waterfall": "^0.1.5",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"body-parser": "^1.17.2",
"bootstrap-select": "^1.12.4",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"cors": "^2.8.4",
"crypto": "^1.0.1",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"email-templates": "^3.1.7",
"events": "^1.1.1",
"express": "^4.15.3",
"express-api-versioning": "^2.0.0",
"express-jwt": "^5.3.0",
"express-session": "^1.15.6",
"fs": "0.0.1-security",
"js-yaml": "^3.10.0",
"jsonwebtoken": "^8.0.0",
"moment": "^2.20.1",
"moment-timezone": "^0.5.14",
"morgan": "^1.8.2",
"node-mocks-http": "^1.6.6",
"nodemailer": "^4.4.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"pg": "^7.0.2",
"pg-hstore": "^2.3.2",
"sequelize": "^4.4.2",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"stream": "0.0.2"
},
"devDependencies": {
"babel-eslint": "^8.1.2",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"chai": "^4.1.0",
"chai-http": "^3.0.0",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jasmine-node": "^1.14.5",
"log-suppress": "^1.0.3",
"mocha": "^3.5.0",
"nodemon": "^1.11.0",
"nyc": "^11.4.1",
"sequelize-cli": "^2.7.0"
},
"directories": {
"test": "tests"
}
}