forked from apache/incubator-devlake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
{
"name": "lake",
"version": "1.0.0",
"description": "The data lake for dev.",
"main": "test-docker-compose.js",
"scripts": {
"start": "node app.js",
"test": "mocha \"test/**\"",
"unit-test": "ENCRYPTION_KEY=123 NODE_ENV=test ./node_modules/mocha/bin/mocha \"test/unit/**/*.test.js\"",
"collect": "nodemon src/collection/main.js",
"collection-worker": "./src/collection/worker.js",
"enrich": "nodemon src/enrichment/main.js",
"enrichment-worker": "./src/enrichment/worker.js",
"lint": "./node_modules/eslint/bin/eslint.js . --max-warnings=0 --report-unused-disable-directives --fix && echo '✔ Your .js files look good.'",
"all": "concurrently \"nodemon src/collection/main.js\" \"nodemon src/collection/worker.js\" \"nodemon src/enrichment/main.js\" \"nodemon src/enrichment/worker.js\"",
"prepare": "husky install",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/merico-dev/lake.git"
},
"author": "",
"_moduleAliases": {
"@config": "config",
"@db": "db",
"@mongo": "db/mongo",
"@src": "src",
"@collectors": "src/collectors"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/merico-dev/lake/issues"
},
"homepage": "https://github.com/merico-dev/lake#readme",
"dependencies": {
"@gitbeaker/node": "^31.0.0",
"amqplib": "^0.8.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"commondb": "src/plugins/commondb",
"concurrently": "^6.2.0",
"express": "^4.17.1",
"jira-pond": "src/plugins/jira-pond",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"mongodb": "*",
"pg": "^8.6.0",
"proxy-agent": "^5.0.0",
"sequelize": "^6.3.4"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.1",
"mocha": "^9.0.2",
"nodemon": "^2.0.12",
"pg": "^8.6.0",
"sequelize-cli": "^6.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}