-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.46 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
{
"name": "@quatico/magellan",
"description": "",
"version": "0.10.1",
"keywords": [
"typescript",
"java",
"compiler",
"addons"
],
"private": true,
"author": "Quatico Solutions AG",
"license": "MIT",
"files": [
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/quatico-solutions/magellan"
},
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "nx run-many --target=clean",
"lint": "nx run-many --target=lint",
"lint:fix": "nx run-many --target=lint",
"build": "nx run-many --target=build",
"watch": "nx run-many --target=watch --parallel=10",
"test": "nx run-many --target=test",
"test:ci": "yarn jest --verbose && yarn --cwd packages/java test",
"test:watch": "nx run-many --target=test:watch --parallel=10",
"test:update": "nx run-many --target=test:update",
"test:e2e": "nx run-many --target=test:e2e",
"dist": "nx run-many --target=dist --skip-nx-cache",
"prepare-release": "yarn dist && yarn lerna version --force-publish",
"prepare-prerelease": "yarn dist && yarn lerna version prerelease -y --force-publish",
"publish-npm": "nx run-many --target=publish-npm",
"license:check": "license-check-and-add check -f license-config.json",
"license:add": "license-check-and-add add -f license-config.json",
"license:remove": "license-check-and-add remove -f license-config.json"
},
"devDependencies": {
"@swc/core": "^1.3.57",
"@swc/jest": "^0.2.26",
"@types/node": "16",
"cross-env": "^7.0.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.11.0",
"jest": "^29.5.0",
"lerna": "6.6.x",
"license-check-and-add": "^4.0.5",
"lint-staged": "^13.2.2",
"memfs": "3.5.x",
"nx": "16.5.0",
"nx-cloud": "16.0.5",
"prettier": "^2.8.8",
"regenerator-runtime": "0.13.11",
"rimraf": "5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "10.9.x",
"typescript": "5.0.x"
},
"engines": {
"node": "16 || 18",
"yarn": "1.22.x"
}
}