forked from clickup/ngx-esbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.26 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@clickup/root",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"demo": "stmux -e '' -- [ \"pnpm nx build-esbuild demo --serve\" .. \"pnpm nx type-check demo\" ]",
"prepare": "husky install"
},
"devDependencies": {
"@angular-devkit/build-angular": "~16.2.0",
"@angular-devkit/core": "~16.2.0",
"@angular-devkit/schematics": "~16.2.0",
"@angular-eslint/eslint-plugin": "~16.0.0",
"@angular-eslint/eslint-plugin-template": "~16.3.1",
"@angular-eslint/template-parser": "~16.0.0",
"@angular/cli": "~16.2.0",
"@angular/compiler-cli": "~16.2.0",
"@angular/language-service": "~16.2.0",
"@babel/core": "^7.23.2",
"@babel/plugin-syntax-decorators": "^7.22.10",
"@babel/plugin-syntax-typescript": "^7.22.5",
"@babel/types": "^7.23.0",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@commitlint/config-nx-scopes": "^18.3.0",
"@craftamap/esbuild-plugin-html": "^0.6.1",
"@nx/angular": "^18.1.1",
"@nx/eslint": "17.0.2",
"@nx/eslint-plugin": "17.3.2",
"@nx/jest": "17.0.2",
"@nx/js": "17.3.2",
"@nx/plugin": "^17.0.2",
"@nx/workspace": "17.3.2",
"@schematics/angular": "~16.2.0",
"@swc-node/register": "~1.6.7",
"@swc/cli": "~0.1.62",
"@swc/core": "~1.6.13",
"@types/babel__core": "^7.20.3",
"@types/express": "^4.17.20",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.200",
"@types/node": "18.19.34",
"@types/postcss-import": "^14.0.2",
"@types/postcss-url": "^10.0.2",
"@types/react-dom": "^18.2.14",
"@types/strip-comments": "^2.0.3",
"@types/ws": "^8.5.8",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"babel-plugin-tester": "^11.0.4",
"chalk": "^4.1.2",
"cheerio": "1.0.0-rc.12",
"esbuild": "^0.19.5",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-sass-plugin": "^2.16.0",
"eslint": "~8.46.0",
"eslint-config-prettier": "^9.0.0",
"express": "^4.18.2",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-preset-angular": "~13.1.0",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "^15.0.2",
"lodash": "^4.17.21",
"nx": "17.3.2",
"open": "^8.0.4",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postcss-url": "^10.1.3",
"prettier": "^2.6.2",
"react-dom": "^18.2.0",
"stmux": "^1.8.7",
"strip-comments": "^2.0.1",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.5.3",
"verdaccio": "^5.0.4",
"ws": "^8.14.2"
},
"packageManager": "pnpm@8.10.2",
"dependencies": {
"@angular/animations": "~16.2.0",
"@angular/common": "~16.2.0",
"@angular/compiler": "~16.2.0",
"@angular/core": "~16.2.0",
"@angular/forms": "~16.2.0",
"@angular/platform-browser": "~16.2.0",
"@angular/platform-browser-dynamic": "~16.2.0",
"@angular/router": "~16.2.0",
"@nx/devkit": "17.3.2",
"@swc/helpers": "~0.5.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"nx": {
"includedScripts": []
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{js,json,yml,md}": [
"prettier --write"
]
}
}