-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
62 lines (62 loc) · 1.85 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
{
"name": "project-lakechain",
"description": "Build scalable and modular document processing pipelines on AWS.",
"version": "0.10.0",
"scripts": {
"build": "npx lerna run build",
"test": "npx lerna run test",
"preclean": "npx lerna run clean",
"clean": "npx rimraf dist/ .scannerwork/ && npx lerna clean --yes",
"postclean": "npx rimraf node_modules .nx docs/node_modules",
"lint": "npx eslint .",
"docs": "npm install --prefix ./docs && npm run --prefix ./docs dev",
"prettier:check": "npx prettier --check .",
"graph": "npx nx graph",
"synth": "npx lerna run synth",
"audit": "npx lerna run audit"
},
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"packages/constructs/*",
"packages/middlewares/*/*",
"examples/simple-pipelines/*",
"examples/simple-pipelines/*-pipelines/*",
"examples/end-to-end-use-cases/*"
],
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"repository": {
"type": "git",
"url": "git://github.com/awslabs/project-lakechain"
},
"bugs": {
"url": "https://github.com/awslabs/project-lakechain/issues"
},
"homepage": "https://awslabs.github.io/project-lakechain/",
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"esbuild": "0.21.5",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"git-precommit-checks": "^3.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"nx": "^19.8.3",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.3.3"
}
}