-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.39 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
{
"name": "bngo-app",
"version": "0.0.1",
"private": true,
"description": "bngo-app",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"lint:backend": "./node_modules/.bin/eslint --ignore-path .eslintignore_backend --config './.eslintrc.json' ./components ./lib ./references ./*.js ./test",
"local": "SERVICE_ENV=local node index.js",
"manifest": "node_modules/make-manifest/bin/make-manifest",
"heroku-postbuild": "npm run build",
"qa": "npm run lint && npm run test",
"docker": "bash -c '(docker network inspect local 2>&1 > /dev/null || docker network create local) && docker-compose --file docker/docker-compose.yml up -d --force-recreate'",
"docker:destroy": "bash -c '(docker network inspect local 2>&1 > /dev/null || docker network create local) && docker-compose --file docker/docker-compose.yml down'",
"start": "cross-env NODE_ENV=production SERVICE_ENV=production node index.js",
"start:local": "cross-env node index.js",
"test": "cross-env SERVICE_ENV=test mocha --reporter spec './test/**/*.test.js'",
"test-ci": "cross-env SERVICE_ENV=test mocha --reporter mocha-junit-reporter"
},
"main": "index.js",
"dependencies": {
"@saeris/vue-spinners": "^1.0.8",
"axios": "^0.21.4",
"body-parser": "^1.19.0",
"bunyan": "^1.8.13",
"chalk": "^3.0.0",
"compression": "^1.7.4",
"confabulous": "^2.1.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"debug": "^4.1.1",
"error-handler-module": "^1.0.3",
"express": "^4.17.1",
"express-jsdoc-swagger": "^1.6.7",
"express-rate-limit": "^5.1.3",
"helmet": "^3.22.0",
"hogan.js": "^3.0.2",
"ioredis": "^4.27.8",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"on-headers": "^1.0.2",
"optional": "^0.1.4",
"prepper": "^1.2.1",
"ramda": "^0.27.2",
"require-all": "^3.0.0",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"systemic": "^3.3.7",
"systemic-domain-runner": "^1.1.0",
"vue": "^2.6.11",
"vue-analytics": "^5.22.1",
"vue-i18n": "^8.17.4",
"vue-notification": "^1.3.20",
"vue-router": "^3.1.5",
"vue-social-sharing": "^2.4.7",
"vue-types": "^1.7.0",
"vuelidate": "^0.7.5",
"vuex": "^3.3.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-router": "~4.2.0",
"@vue/cli-plugin-unit-jest": "~4.2.0",
"@vue/cli-plugin-vuex": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-vue": "^6.1.2",
"expect.js": "^0.3.1",
"husky": "^4.2.3",
"make-manifest": "^1.0.4",
"mocha": "^6.2.2",
"mocha-junit-reporter": "^1.23.1",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"sinon": "^7.5.0",
"supertest": "^4.0.2",
"vue-template-compiler": "^2.6.11"
},
"_id": "bngo-app@0.0.1",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run lint:backend",
"pre-push": "npm run test && npm run test:unit"
}
},
"readme": "ERROR: No README data found!"
}