-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.71 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
{
"devDependencies": {
"@types/cli-progress": "^3.11.5",
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vidavidorra/commitlint-config": "^6.0.1",
"commitlint": "^18.4.4",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"odata-filter-builder": "^1.0.0",
"openapi-typescript": "^6.7.2",
"prettier": "^3.1.0",
"ts-command-line-args": "^2.5.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"name": "fluro-migrator",
"description": "A script to help us migrate our data from Fluro to Rock RMS",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"test": "jest",
"start": "npx ts-node src/main.ts",
"generate-rock-client": "./scripts/generateRockClient.sh",
"lint": "npx eslint --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EvChurch/fluro-migrator.git"
},
"author": "AucklandEv",
"license": "MIT",
"bugs": {
"url": "https://github.com/EvChurch/fluro-migrator/issues"
},
"homepage": "https://github.com/EvChurch/fluro-migrator#readme",
"dependencies": {
"ansi-colors": "^4.1.3",
"axios": "^1.6.2",
"axios-retry": "^4.5.0",
"cli-progress": "^3.12.0",
"dotenv": "^16.3.1",
"fetch-retry": "^6.0.0",
"lodash": "^4.17.21",
"openapi-fetch": "^0.8.2",
"zod": "^3.24.1"
}
}