-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.45 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
{
"name": "playground",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js",
"serve:www": "nx serve",
"serve:api": "nx run api:serve:development",
"build:www:dev": "npx nx run client-website:build:development",
"build:www:prod": "npx nx run client-website:build:production",
"build:api:dev": "npx nx run api:build:development",
"build:api:prod": "npx nx run api:build:production",
"test:www": "nx run client-website:test",
"test:www:watch": "nx run client-website:test --watch",
"test:api": "nx run api:test",
"test:api:watch": "nx run api:test --watch",
"test:e2e": "nx e2e client-website-e2e",
"test:e2e:watch": "nx e2e client-website-e2e --watch",
"lint:eslint": "npm run lint:eslint:www && npm run lint:eslint:api",
"lint:eslint:www": "nx run client-website:lint",
"lint:eslint:api": "nx run api:lint",
"lint:prettier": "prettier --check .",
"lint:style": "ng lint",
"format:prettier": "prettier --write ."
},
"private": true,
"dependencies": {
"@angular/animations": "~14.2.0",
"@angular/cdk": "^14.2.6",
"@angular/common": "~14.2.0",
"@angular/compiler": "~14.2.0",
"@angular/core": "~14.2.0",
"@angular/forms": "~14.2.0",
"@angular/platform-browser": "~14.2.0",
"@angular/platform-browser-dynamic": "~14.2.0",
"@angular/router": "~14.2.0",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nrwl/nx-cloud": "latest",
"@ngrx/data": "^14.3.2",
"@ngrx/effects": "^14.3.2",
"@ngrx/entity": "^14.3.2",
"@ngrx/store": "^14.3.2",
"@ngrx/store-devtools": "^14.3.2",
"@nrwl/angular": "15.0.4",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-tsdoc": "^0.2.17",
"fp-ts": "^2.13.1",
"i": "^0.3.7",
"immutable": "^4.1.0",
"jose": "^4.11.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"npm": "^9.1.3",
"prettier-plugin-jsdoc": "^0.4.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.7",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~14.2.0",
"@angular-eslint/eslint-plugin": "~14.0.4",
"@angular-eslint/eslint-plugin-template": "~14.0.4",
"@angular-eslint/template-parser": "~14.0.4",
"@angular/cli": "~14.2.0",
"@angular/compiler-cli": "~14.2.0",
"@angular/language-service": "~14.2.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@nrwl/cli": "15.0.4",
"@nrwl/cypress": "15.0.4",
"@nrwl/eslint-plugin-nx": "15.0.4",
"@nrwl/jest": "15.0.4",
"@nrwl/linter": "15.0.4",
"@nrwl/nest": "15.0.4",
"@nrwl/node": "15.0.4",
"@nrwl/workspace": "15.0.4",
"@types/jest": "28.1.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "18.7.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"cypress": "^10.7.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-functional": "^4.4.1",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unicorn": "^44.0.2",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"jest-preset-angular": "~12.2.2",
"nx": "15.0.4",
"prettier": "^2.6.2",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "~4.8.2"
}
}