-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·100 lines (100 loc) · 3.79 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
{
"name": "rudder-config-schema",
"version": "1.97.2",
"description": "",
"main": "src/index.ts",
"private": true,
"author": "RudderStack",
"license": "MIT",
"bugs": {
"url": "https://github.com/rudderlabs/rudder-config-schema/issues"
},
"homepage": "https://github.com/rudderlabs/rudder-config-schema#readme",
"repository": {
"type": "git",
"url": "https://github.com/rudderlabs/rudder-config-schema.git"
},
"scripts": {
"setup:python": "pip3 install -r ./scripts/requirements.txt",
"setup:npm": "npm ci",
"setup": "npm run setup:npm && npm run setup:python",
"test": "jest --detectOpenHandles --coverage --notify --watchAll=false",
"test:ci": "npm run test -- --silent --expand --maxWorkers=2",
"test:silent": "npm run test -- --silent",
"release": "npx standard-version",
"check:lint": "eslint \"src/**/*.*\" -f json -o reports/eslint.json || exit 0",
"format:py": "python3 -m black .",
"format": "prettier . --write",
"lint:fix": "eslint \"src/**/*.*\" --fix",
"lint": "npm run format && npm run lint:fix",
"prepare": "husky install",
"pre-commit": "npm run pre-process && npm run test && npx lint-staged",
"commit-msg": "commitlint --edit",
"release:github": "DEBUG=conventional-github-releaser npx conventional-github-releaser -p angular --config github-release.config.js",
"check:schema:source:all": "python3 scripts/schemaGenerator.py source -all",
"check:schema:source": "python3 scripts/schemaGenerator.py source -name ",
"update:schema:source": "python3 scripts/schemaGenerator.py source -update -name ",
"check:schema:destination:all": "python3 scripts/schemaGenerator.py destination -all",
"check:schema:destination": "python3 scripts/schemaGenerator.py destination -name ",
"update:schema:destination": "python3 scripts/schemaGenerator.py destination -update -name ",
"deploy:db:local": "npm run pre-process && python3 scripts/deployToDB.py http://localhost:5050",
"pre-process": "node scripts/preProcess.js"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-arrow-functions": "^7.20.7",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@commitlint/config-conventional": "^17.4.4",
"@digitalroute/cz-conventional-changelog-for-jira": "^8.0.0",
"@rudderstack/json-template-engine": "^0.13.3",
"@swc/core": "^1.3.42",
"@swc/jest": "^0.2.24",
"@types/express": "^4.17.17",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"commander": "^10.0.0",
"commitizen": "^4.3.0",
"commitlint": "^17.5.1",
"conventional-github-releaser": "^3.1.5",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-compat": "^4.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-unicorn": "^46.0.0",
"esm": "^3.2.25",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"node-notifier": "^10.0.1",
"prettier": "^2.8.7",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2"
},
"dependencies": {
"ajv": "^8.12.0",
"glob": "^9.3.2"
},
"lint-staged": {
"*.{json,js,ts,md}": "prettier --write",
"*.py": "python3 -m black"
},
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"jiraMode": false,
"jiraOptional": true,
"skipScope": true,
"defaultType": "feat"
}
}
}