-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.43 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
{
"name": "integration-website-chat",
"description": "Website Chat integration for Clarity Hub",
"version": "1.0.0",
"main": "src/index.js",
"private": true,
"author": "Clarity Hub, Inc",
"license": "UNLICENSED",
"scripts": {
"lint": "eslint .",
"start": "export NODE_ENV=development && if [ \"$WATCH\" = \"\" ]; then node src/index.js; else nodemon ./src/index.js; fi",
"test": "npm run test:once -- --watch",
"test:once": "export NODE_ENV=test && mocha --timeout 10000 ./test-boot.js */**.test.js",
"test:integration": "npm run test:integration:once -- --watch",
"test:integration:once": "export NODE_ENV=test && mocha --timeout 10000 ./test-boot.js integration/tests/**.js",
"migrate:up": "sequelize db:migrate",
"migrate:up:test": "export NODE_ENV=test && npm run migrate:up",
"migrate:up:all": "yarn run migrate:up; yarn run migrate:up:test",
"migrate:down": "sequelize db:migrate:undo",
"migrate:down:test": "export NODE_ENV=test && npm run migrate:down",
"migrate:down:all": "yarn run migrate:down; yarn run migrate:down:test",
"seed": "sequelize db:seed:all",
"seed:test": "export NODE_ENV=test && npm run seed",
"seed:all": "yarn run seed; yarn run seed:test",
"seed:remove": "sequelize db:seed:undo:all",
"seed:remove:test": "export NODE_ENV=test && npm run seed:remove",
"seed:remove:all": "yarn run seed:remove; yarn run seed:remove:test"
},
"dependencies": {
"amqplib": "^0.5.1",
"body-parser": "^1.17.2",
"bugsnag": "^2.0.0",
"cors": "^2.8.3",
"express": "^4.15.3",
"express-rate-limit": "^2.8.0",
"express-version-route": "^1.0.0",
"hbs": "^4.0.1",
"helmet": "^3.8.1",
"jsonwebtoken": "^7.4.1",
"lodash": "^4.17.4",
"node-clarity-hub": "^0.0.2",
"pg": "^6.2.3",
"pg-hstore": "^2.3.2",
"rate-limit-redis": "^1.1.0",
"redis": "^2.7.1",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"sequelize": "^4.0.0",
"sequelize-cli": "^2.8.0",
"service-claire": "git+ssh://gitlab.com:clairvoyance/node-service-claire.git"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"chai": "^4.0.2",
"chai-http": "^3.0.0",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-config-claire": "git+ssh://gitlab.com:clairvoyance/eslint-config-claire.git",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"sinon": "^2.3.2"
}
}