-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·99 lines (99 loc) · 3.59 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
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
{
"name": "hello-books",
"version": "1.0.0",
"description": "A simple application that helps manage a library and its processes like stocking, tracking and renting books.",
"scripts": {
"eslint": "./node_modules/.bin/eslint ./server/src/",
"build": "rm -rf server/dist && babel server/src/ --out-dir server/dist/ --copy-files",
"transpile": "npm run build -- --watch",
"start:dev": "nodemon --watch server/dist ./server/dist/server.js",
"start": "NODE_ENV=production node ./server/dist/server.js",
"heroku-postbuild": "cd ./client && npm i && npm run build && cd ../ && npm run build",
"test": "NODE_ENV=test npm run test:db && NODE_ENV=test mocha --compilers js:babel-register \"server/src/api/v1/tests/**/**.spec.js\" --timeout 100000",
"test:coverage": "NODE_ENV=test nyc npm test && nyc report --reporter=lcov --reporter=text --reporter=json && cd ./client && npm i && npm run coverage || coveralls",
"test:e2e": "npm run test:db && NODE_ENV=test nightwatch --filter **/**.spec.js",
"test:db": "npm run test:db:migrate:undo && sequelize db:migrate --env test",
"test:db:migrate:undo": "sequelize db:migrate:undo:all --env test",
"test:e2e-setup": "selenium-standalone install",
"test:e2e-server": "selenium-standalone start",
"slate:build": "cd ./slate && ./deploy.sh",
"slate:install": "cd ./slate && bundle install",
"slate:start": "cd ./slate && bundle exec middleman server"
},
"nyc": {
"exclude": [
"server/src/app/**.js",
"server/src/api/**/tests/**.js",
"server/src/api/**/models/index.js",
"server/src/api/**/utils/mailer.js",
"server/src/api/**/cron/sendSurcharge.js",
"server/dist/api/**/migrations/**.js",
"server/dist/config/**.js"
]
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adesege/HelloBooks.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/adesege/HelloBooks/issues"
},
"homepage": "https://github.com/adesege/HelloBooks#readme",
"devDependencies": {
"chai-http": "^3.0.0",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^2.13.1",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-plugin-flowtype": "^2.36.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.11.0",
"tape": "^4.8.0"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"chai": "^4.1.1",
"cloudinary": "^1.9.0",
"connect": "^3.6.3",
"cron": "^1.3.0",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"express": "^4.15.3",
"express-static-gzip": "git+https://github.com/adesege/express-static-gzip.git#chore/check-folderpath-exists",
"faker": "^4.1.0",
"js-yaml": "^3.10.0",
"jsonwebtoken": "^7.4.1",
"mocha": "^3.5.0",
"moment": "^2.18.1",
"moment-timezone": "^0.5.14",
"morgan": "^1.8.2",
"nightwatch": "^0.9.16",
"nodemailer": "^4.1.1",
"nyc": "11.1.0",
"pg": "^7.1.0",
"pg-hstore": "^2.3.2",
"selenium-standalone": "^6.11.0",
"sequelize": "^4.4.2",
"sequelize-cli": "^2.8.0",
"socket.io": "^2.0.4",
"superagent": "^3.6.0",
"supertest": "^3.0.0",
"swagger-tools": "^0.10.1",
"webpack": "^2.7.0"
}
}