forked from TimothyJones/ast-types
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 KB
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
{
"name": "amplication-ast-types-and-libraries",
"scripts": {
"format:check": "npx nx format:check --all",
"format:write": "npx nx format:write --all",
"build": "nx run-many --target=build",
"test:ci": "nx run-many --target=test --all --parallel --coverage --coverageReporters=lcov && node ./scripts/coverageMerger.js && lcov-viewer lcov -o ./coverage/workspace-report ./coverage/lcov.info",
"clean": "nx clear-cache",
"docs": "typedoc"
},
"dependencies": {
"prettier": "^3.5.3",
"tslib": "^2.3.0"
},
"devDependencies": {
"@nx-tools/nx-container": "^5.3.1",
"@nx/eslint": "19.4.4",
"@nx/eslint-plugin": "19.4.4",
"@nx/jest": "19.4.4",
"@nx/js": "19.4.4",
"jest": "^29.7.0",
"jest-environment-node": "^29.4.1",
"nx": "19.4.4",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typedoc": "^0.28.1",
"typescript": "^5.4.5",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"@types/jest": "^29.5.6",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prettier": "^4.2.1"
},
"lint-staged": {
"*": [
"nx format:write --files"
]
},
"engines": {
"node": "^20.12.2",
"npm": "^10.5.0"
},
"bugs": {
"url": "https://github.com/amplication/amplication/issues"
},
"nx": {
"includedScripts": []
}
}