-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.58 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
{
"name": "censeo",
"version": "0.0.1",
"description": "Simple scrum poker app",
"author": "Clem Flory <[email protected]>",
"license": "ISC",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx lint",
"format": "nx format",
"format:check": "nx format:check",
"predeploy:hosting": "npm run format && npm run lint && npm run test && npm run build",
"fb": "node_modules/.bin/firebase",
"fb:deploy:all": "npm run predeploy:hosting && npm run fb -- deploy --only hosting,firestore",
"fb:deploy:firestore": "npm run fb -- deploy --only firestore",
"fb:hosting:channel:deploy:stage": "npm run predeploy:hosting && npm run fb -- hosting:channel:deploy stage",
"fb:hosting:channel:list": "npm run fb -- hosting:channel:list"
},
"private": true,
"dependencies": {
"@angular/animations": "17.1.3",
"@angular/common": "17.1.3",
"@angular/compiler": "17.1.3",
"@angular/core": "17.1.3",
"@angular/fire": "^17.0.1",
"@angular/forms": "17.1.3",
"@angular/platform-browser": "17.1.3",
"@angular/platform-browser-dynamic": "17.1.3",
"@angular/router": "17.1.3",
"@nx/angular": "18.0.4",
"date-fns": "^3.3.1",
"lodash-es": "^4.17.21",
"primeflex": "^3.3.1",
"primeicons": "^6.0.1",
"primeng": "^15.4.1",
"rxjs": "7.8.1",
"tslib": "^2.6.2",
"zod": "^3.22.4",
"zone.js": "0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.1.4",
"@angular-devkit/core": "17.1.4",
"@angular-devkit/schematics": "17.1.4",
"@angular-eslint/eslint-plugin": "17.0.1",
"@angular-eslint/eslint-plugin-template": "17.0.1",
"@angular-eslint/template-parser": "17.0.1",
"@angular/cli": "~17.1.0",
"@angular/compiler-cli": "17.1.3",
"@angular/language-service": "17.1.3",
"@nx/cypress": "18.0.4",
"@nx/eslint": "18.0.4",
"@nx/eslint-plugin": "18.0.4",
"@nx/jest": "18.0.4",
"@nx/workspace": "18.0.4",
"@schematics/angular": "17.1.4",
"@types/jest": "29.4.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "18.16.9",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"cypress": "^13.0.0",
"eslint": "8.48.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.15.1",
"firebase-tools": "^13.3.0",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jest-preset-angular": "13.1.6",
"nx": "18.0.4",
"nx-cloud": "18.0.0",
"prettier": "^3.2.5",
"ts-jest": "29.1.2",
"ts-node": "10.9.1",
"typescript": "5.3.3"
}
}