forked from Fernanda-Kipper/eventostec-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.12 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
{
"name": "community-events-front",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"backend": "json-server --watch db/db.json",
"test": "ng test",
"test:watch": "ng test --watch",
"serve:ssr:community-events-front": "node dist/community-events-front/server/server.mjs",
"lint": "ng lint",
"format": "prettier src/**/*.{ts,html} --write",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,html}": [
"eslint",
"prettier --write",
"prettier --check"
]
},
"private": true,
"dependencies": {
"@angular/animations": "^17.2.0",
"@angular/common": "^17.2.0",
"@angular/compiler": "^17.2.0",
"@angular/core": "^17.2.0",
"@angular/forms": "^17.2.0",
"@angular/platform-browser": "^17.2.0",
"@angular/platform-browser-dynamic": "^17.2.0",
"@angular/platform-server": "^17.2.0",
"@angular/router": "^17.2.0",
"@angular/ssr": "^17.2.3",
"@ng-select/ng-select": "12.0.7",
"express": "^4.18.2",
"ngx-clipboard": "^16.0.0",
"primeng": "^17.18.1",
"rxjs": "~7.8.0",
"select2": "^4.1.0-rc.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-builders/jest": "^17.0.3",
"@angular-devkit/build-angular": "^17.2.3",
"@angular-eslint/builder": "17.5.1",
"@angular-eslint/eslint-plugin": "17.5.1",
"@angular-eslint/eslint-plugin-template": "17.5.1",
"@angular-eslint/schematics": "17.5.1",
"@angular-eslint/template-parser": "17.5.1",
"@angular/cli": "^17.2.3",
"@angular/compiler-cli": "^17.2.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.12",
"@types/node": "^18.18.0",
"@typescript-eslint/eslint-plugin": "7.10.0",
"@typescript-eslint/parser": "7.10.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jasmine-core": "~5.1.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.1.0",
"lint-staged": "^15.2.5",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"typescript": "~5.3.2"
}
}