-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.78 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
{
"name": "@quatico/websmith",
"description": "A compiler frontend for the TypeScript compiler",
"keywords": [
"typescript",
"compiler",
"addons",
"code generators",
"code transformers"
],
"author": "Quatico Solutions AG",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/quatico-solutions/websmith.git"
},
"bugs": {
"url": "https://github.com/quatico-solutions/websmith/issues"
},
"homepage": "https://github.com/quatico-solutions/websmith#readme",
"private": true,
"scripts": {
"clean": "nx run-many --target=clean",
"lint": "nx run-many --target=lint",
"lint:fix": "nx run-many --target=lint:fix",
"build": "nx run-many --target=build",
"watch": "nx run-many --target=watch --parallel=10",
"watch:test": "nx run-many --target=watch:test --parallel=10",
"test": "nx run-many --target=test",
"test:e2e": "nx run-many --target=test:e2e",
"test:update-snapshots": "nx run-many --target=test:update-snapshots",
"dist": "nx run-many --target=dist && pnpm test:e2e",
"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",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@cucumber/gherkin": "^28.0.0",
"@eslint/js": "^9.1.1",
"@nrwl/nx-cloud": "18.0.1",
"@nx/eslint-plugin": "^18.3.4",
"@swc/core": "1.5.0",
"@swc/jest": "0.2.36",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/node": "20",
"commander": "^12.0.0",
"concurrently": "^8.2.2",
"create-hash": "1.2.0",
"cross-env": "7.0.3",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.3.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-testing-library": "^6.2.2",
"globals": "^15.1.0",
"husky": "9.0.11",
"jest": "^29.7.0",
"license-check-and-add": "4.0.5",
"memfs": "^4.9.2",
"nx": "^18.3.4",
"path": "0.12.7",
"prettier": "^3.2.5",
"quill-delta": "^5.1.0",
"rimraf": "5.0.5",
"rxjs": "^7.8.1",
"ts-node": "^10.9.2",
"tslib": "2.6.2",
"typescript": "5.4.5",
"typescript-eslint": "^7.8.0",
"webpack": "^5.91.0"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"eslint"
]
}
}
}