-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
114 lines (114 loc) · 3.99 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "kantab",
"version": "0.3.0",
"description": "Kanban board application with Moleculer microservices & Vue.js",
"scripts": {
"dev": "node --inspect node_modules/moleculer/bin/moleculer-runner.js --env --repl --hot backend/services",
"start": "moleculer-runner --env",
"build:frontend": "cd frontend && npm run build",
"lint": "eslint backend",
"lint:fix": "eslint backend --fix",
"deps": "npm-check -u",
"ci:unit": "jest --testMatch **/unit/**/*.spec.js --watch",
"ci:integration": "cross-env TEST_INT=run MONGO_URI=mongodb://localhost/kantab-int jest --testMatch **/integration/**/*.spec.js --runInBand --watch",
"ci:e2e": "cross-env TEST_E2E=open MONGO_URI=mongodb://localhost/kantab-e2e moleculer-runner --env backend/services",
"test:unit": "jest --testMatch **/unit/**/*.spec.js --coverage --no-cache",
"test:integration": "cross-env TEST_INT=run MONGO_URI=mongodb://localhost/kantab-int jest --testMatch **/integration/**/*.spec.js --runInBand --no-cache",
"test:e2e": "cross-env TEST_E2E=run MONGO_URI=mongodb://localhost/kantab-e2e moleculer-runner --env backend/services",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"build:docker": "docker build -t kantab:latest .",
"build:docker:hub": "docker build -t icebob/kantab:latest . && docker push icebob/kantab:latest",
"gen:compose": "cross-env ONLY_GENERATE=true moleculer-runner --env backend/services",
"dc:up": "docker-compose up -d",
"dc:down": "docker-compose down",
"cli:prod": "moleculer connect --ns kantab-prod nats://localhost:4222"
},
"keywords": [
"microservices",
"moleculer"
],
"repository": {
"type": "git",
"url": "https://github.com/icebob/kantab.git"
},
"author": "Icebob",
"license": "GPL-3.0-or-later",
"devDependencies": {
"axios": "^0.25.0",
"coveralls": "^3.1.1",
"cypress": "^9.4.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"execa": "^5.1.1",
"fakerator": "^0.3.5",
"glob": "^7.2.0",
"i18next-multiload-backend-adapter": "^1.0.0",
"i18next-xhr-backend": "^3.2.2",
"jest": "^27.4.7",
"jest-cli": "^27.4.7",
"maildev": "^1.1.0",
"moleculer-repl": "^0.7.1",
"npm-check": "^5.9.2",
"prettier": "^2.6.2"
},
"dependencies": {
"@moleculer/database": "github:moleculerjs/database#dd55f0c8aefc4e014bfe8be8f30d8288e9bba50e",
"@moleculer/lab": "^0.6.2",
"accept": "3.1.3",
"bcrypt": "^5.0.1",
"bluebird": "^3.7.2",
"connect-history-api-fallback": "1.6.0",
"cookie": "^0.4.2",
"cron": "^1.8.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"graphql": "^15.8.0",
"graphql-depth-limit": "1.1.0",
"graphql-type-json": "^0.3.2",
"graphql-type-long": "^0.1.1",
"graphql-validation-complexity": "^0.4.2",
"haikunator": "^2.1.2",
"handlebars": "^4.7.7",
"hashids": "^2.2.10",
"helmet": "^5.1.0",
"i18next": "^21.8.9",
"i18next-http-middleware": "^3.2.1",
"i18next-node-fs-backend": "2.1.3",
"ioredis": "^4.28.4",
"js-yaml": "^4.1.0",
"jsonwebtoken": "8.5.1",
"kleur": "^4.1.4",
"moleculer": "^0.14.21",
"moleculer-apollo-server": "github:moleculerjs/moleculer-apollo-server#7f0e2e2e2cb8c3118aa19385025578b2e5d7526f",
"moleculer-io": "^2.0.0",
"moleculer-mail": "^1.2.5",
"moleculer-web": "^0.10.4",
"moment": "^2.29.1",
"mongodb": "^4.7.0",
"nats": "^2.7.1",
"nedb": "^1.8.0",
"passport": "^0.5.2",
"passport-facebook": "3.0.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "2.0.0",
"pluralize": "^8.0.0",
"pug": "^3.0.2",
"slugify": "^1.6.5",
"speakeasy": "2.0.0",
"swagger-ui-dist": "^4.12.0",
"uid-generator": "2.0.0"
},
"engines": {
"node": ">= 16.x.x"
},
"jest": {
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"rootDir": "./",
"roots": [
"./backend/tests"
],
"transform": {}
}
}