-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.8 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
{
"name": "injectable-ts",
"version": "0.0.0",
"license": "MIT",
"private": true,
"workspaces": [
"./packages/*"
],
"engines": {
"node": ">=18.17.0",
"pnpm": ">=8.15.5"
},
"scripts": {
"build": "nx run-many --target=build --all --parallel",
"lint": "nx run-many --target=lint --all --parallel",
"test": "nx run-many --target=test --all --parallel",
"preversion": "pnpm i --frozen-lockfile",
"version": "pnpm i && git add pnpm-lock.yaml",
"postversion": "git push",
"deploy": "nx run-many --target=deploy --all"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-angular": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@nx/devkit": "18.0.4",
"@nx/eslint": "18.0.4",
"@nx/eslint-plugin": "18.0.4",
"@nx/jest": "18.0.4",
"@nx/js": "18.0.4",
"@nx/rollup": "18.0.4",
"@nx/workspace": "18.0.4",
"@testing-library/react": "^13.4.0",
"@types/jest": "29.4.4",
"@types/node": "18.19.17",
"@types/react": "^18.2.67",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-expect-type": "^0.3.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-unicorn": "^51.0.1",
"husky": "^7.0.4",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"lerna": "^4.0.0",
"ngx-deploy-npm": "^8.0.1",
"nx": "18.0.4",
"prettier": "2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "29.1.2",
"ts-node": "10.9.1",
"tslib": "^2.6.2",
"typescript": "5.3.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}