-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
123 lines (123 loc) · 4.21 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
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "openforge-ionic-monorepo-example",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"prepare": "husky install",
"serve:app:vue": "nx serve example-app-vue",
"serve:app:react": "nx serve example-app-react"
},
"private": true,
"devDependencies": {
"@angular-devkit/build-angular": "18.0.4",
"@angular-devkit/core": "18.0.4",
"@angular-devkit/schematics": "18.0.4",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/compiler-cli": "18.0.3",
"@angular/language-service": "18.0.3",
"@capacitor/cli": "^6.1.0",
"@ionic/angular-toolkit": "^11.0.1",
"@nx/angular": "19.3.0",
"@nx/cypress": "19.3.0",
"@nx/eslint": "19.3.0",
"@nx/eslint-plugin": "^19.3.0",
"@nx/jest": "19.3.0",
"@nx/react": "19.3.0",
"@nx/vite": "19.3.0",
"@nx/vue": "19.3.0",
"@nx/workspace": "19.3.0",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.4",
"@types/react": "^18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@typescript-eslint/utils": "^8.0.0-alpha.28",
"@vitejs/plugin-react": "4.3.1",
"@vitest/coverage-v8": "^1.6.0",
"babel-eslint": "^10.1.0",
"cypress": "^13.11.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-angular": "14.1.0",
"jsdom": "^24.1.0",
"nx": "^19.3.0",
"nx-stylelint": "^17.1.5",
"prettier": "^3.3.2",
"prettier-eslint": "^16.3.0",
"sass": "^1.77.6",
"stylelint": "^16.6.1",
"stylelint-config-prettier": "^8.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"ts-jest": "29.1.5",
"ts-node": "^10.9.2",
"typescript": "5.4.5",
"vite": "^5.3.1",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "4.3.2"
},
"dependencies": {
"@angular/animations": "18.0.3",
"@angular/common": "18.0.3",
"@angular/compiler": "18.0.3",
"@angular/core": "18.0.3",
"@angular/forms": "18.0.3",
"@angular/platform-browser": "18.0.3",
"@angular/platform-browser-dynamic": "18.0.3",
"@angular/router": "18.0.3",
"@capacitor/app": "^6.0.0",
"@capacitor/core": "^6.1.0",
"@capacitor/haptics": "^6.0.0",
"@capacitor/keyboard": "^6.0.1",
"@capacitor/status-bar": "^6.0.0",
"@ionic/angular": "^8.2.2",
"@schematics/angular": "18.0.4",
"@types/cypress": "^1.1.3",
"@vitejs/plugin-vue": "^5.0.5",
"@vitest/ui": "^1.6.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"babel-eslint": "^10.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.12",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-vue": "^9.26.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "^6.23.1",
"rxjs": "7.8.1",
"ts-lib": "^0.0.5",
"tslib": "^2.6.3",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.21",
"zone.js": "0.14.7"
},
"eslintIgnore": [
"*.spec.ts"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,html}": [
"eslint --fix",
"git add"
]
}
}