-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.7 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.7 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
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
{
"name": "@eclipse/source",
"version": "0.0.0",
"description": "engine",
"homepage": "https://github.com/itou/eclipse",
"main": "dist/index.js",
"author": "itou",
"scripts": {},
"dependencies": {
"evt": "^2.5.3",
"tslib": "^2.3.0",
"xstate": "^4.38.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@nx/eslint-plugin": "16.10.0",
"@nx/jest": "^16.10.0",
"@nx/js": "^16.10.0",
"@nx/linter": "^16.10.0",
"@nx/workspace": "^16.10.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "~8.46.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-node": "^29.4.1",
"nx": "16.10.0",
"nx-cloud": "latest",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "10.9.1",
"typescript": "^5.0.4",
"verdaccio": "^5.0.4"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"modulePaths": [
"<rootDir>/src"
]
},
"lint-staged": {
"src/**/*.ts": [
"prettier --config .prettierrc --write",
"eslint --fix",
"git add"
]
},
"files": [
"/dist",
"package.json",
"README.md"
],
"nx": {
"targets": {
"clean": {
"outputs": [
"{projectRoot}/dist"
]
},
"build": {
"outputs": [
"{projectRoot}/dist"
]
},
"test": {
"outputs": [
"{projectRoot}/coverage"
]
}
}
}
}