-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.25 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "elf-sync-state",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "nx run elf-sync-state:build",
"test": "nx run elf-sync-state:test --codeCoverage",
"lint": "nx run elf-sync-state:lint",
"predeploy": "npm run lint && npm run test && nx run elf-sync-state:version && npm run build",
"deploy": "npm publish dist/packages/elf-sync-state --access public",
"audit:fix": "npm audit --fix",
"update:nx": "nx migrate latest && npm install && (test -f migrations.json && (nx migrate --run-migrations && rm migrations.json) || 2>/dev/null)",
"prepare": "husky || true",
"commit": "cz"
},
"private": true,
"dependencies": {
"@ngneat/elf": "^2.5.1",
"lodash-es": "^4.17.21",
"rxjs": "^7.5.5",
"tslib": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@jscutlery/semver": "^5.3.1",
"@types/jest": "29.5.12",
"@types/lodash-es": "^4.17.12",
"@types/node": "18.19.9",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-preset-minify": "^0.5.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"husky": "^9.1.5",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"nx": "19.6.5",
"prettier": "^2.6.2",
"ts-jest": "29.1.5",
"ts-node": "10.9.1",
"typescript": "5.5.4",
"yarn-audit-fix": "^10.0.9",
"@nx/workspace": "19.6.5",
"@nx/js": "19.6.5",
"@nx/web": "19.6.5",
"@nx/eslint-plugin": "19.6.5",
"@nx/jest": "19.6.5",
"@nx/rollup": "19.6.5",
"@nx/eslint": "19.6.5"
},
"resolutions": {
"minimist": ">=1.2.6"
},
"lint-staged": {
"*": [
"nx format:write --files"
],
"*.{js,jsx,ts,tsx}": [
"nx affected:lint --fix --files"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-enum": [
2,
"always",
[
"elf-sync-state"
]
]
}
}
}