This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.9 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
{
"name": "aim",
"private": true,
"author": "Radoslaw Swiat",
"license": "MIT",
"engines": {
"node": ">=18.13.0"
},
"scripts": {
"// Start commands": "=================================================================",
"start:playground": "yarn nx start @vodafoneuk/aim-mocking-playground",
"// Build commands": "=================================================================",
"build:all": "nx run-many --target=build --all",
"// Commit commands": "=================================================================",
"prepare": "husky install",
"// Linting commands": "=================================================================",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint --ext .ts,.tsx packages/",
"lint:prettier": "prettier --check 'packages/(core|logger)/**/*.(ts|tsx|json)'",
"commit": "cz",
"// Licenses": "=========================================================================",
"licenses:setup": "yarn install && yarn nx build @vodafoneuk/licenses-generator",
"licenses:generate:core": "node ./packages/licenses/dist/index.cjs get --root packages/core",
"licenses:generate:logger": "node ./packages/licenses/dist/index.cjs get --root packages/logger",
"licenses:generate:licenses": "node ./packages/licenses/dist/index.cjs get --root packages/licenses",
"licenses:generate:all": "yarn licenses:setup && yarn licenses:generate:core && yarn licenses:generate:logger && yarn licenses:generate:licenses"
},
"devDependencies": {
"@nx/workspace": "latest",
"@rollup/plugin-alias": "^4.0.2",
"@types/jest": "^29.5.3",
"@types/node": "18.13.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"alias-hq": "^6.2.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "^6.9.2",
"esbuild": "^0.16.7",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"jest": "^29.6.2",
"lerna": "^7.1.1",
"prettier": "^2.8.8",
"rollup": "^3.28.0",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-tsconfig-paths": "^1.5.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.3",
"nx-cloud": "latest"
},
"resolutions": {
"**/lerna/semver": "^7.5.2",
"**/newman/postman-runtime/handlebars/minimist": "1.2.6",
"**/newman/word-wrap": "1.2.4",
"**/sessionstore/async": "2.6.4",
"**/sessionstore/lodash": "4.17.21"
},
"workspaces": [
"packages/**/*"
],
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"volta": {
"node": "18.13.0",
"yarn": "1.22.19"
}
}