-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
161 lines (161 loc) · 6.47 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "@proto/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"start": "npx nx serve dashboard --open",
"s:auth": "node server/server.js",
"wizard": "npx nx serve wizard --port 4800 --open",
"docker:build-remote": "sh build-remote.sh",
"docker:run-remote": "docker-compose up",
"_portal": "-------------------------------------------------------------------------------",
"s:portal-app": "npx nx serve portal --open",
"s:features-api": "npx nx serve features-api",
"s:features-json": "json-server server/features.json --routes=server/routes.json --port=3000",
"s:portal-feature": "concurrently \"npm run s:features-api\" \"npm run s:portal-app\"",
"_challenges": "-------------------------------------------------------------------------------",
"s:challenges-app": "npx nx serve challenges --open",
"s:challenges-api": "npx nx serve challenges-api",
"s:challenges-json": "json-server server/challenges.json --routes=server/routes.json --port=3100",
"s:challenges-feature": "concurrently \"npm run s:challenges-json\" \"npm run s:challenges-app\"",
"_flashcards": "-------------------------------------------------------------------------------",
"s:flashcards-app": "npx nx serve flashcards --open",
"s:flashcards-api": "npx nx serve flashcards-api",
"s:flashcards-json": "json-server server/flashcards.json --routes=server/routes.json --port=3200",
"s:flashcards-feature": "concurrently \"npm run s:flashcards-json\" \"npm run s:flashcards-app\"",
"_notes": "------------------------------------------------------------------------------------",
"s:notes-app": "npx nx serve notes --open",
"s:notes-api": "npx nx serve notes-api",
"s:notes-json": "json-server server/notes.json --routes=server/routes.json --port=3300",
"s:notes-feature": "concurrently \"npm run s:notes-json\" \"npm run s:notes-app\"",
"_users": "------------------------------------------------------------------------------------",
"s:users-app": "npx nx serve users --open",
"s:users-api": "npx nx serve users-api",
"s:users-json": "json-server server/users.json --routes=server/routes.json --port=3400",
"s:users-feature": "concurrently \"npm run s:users-json\" \"npm run s:users-app\"",
"_seeders": "----------------------------------------------------------------------------------",
"seed:features": "ts-node remote/features/src/app/database/database.seeder.ts",
"seed:challenges": "ts-node remote/challenges/src/app/database/database.seeder.ts",
"seed:flashcards": "ts-node remote/flashcards/src/app/database/database.seeder.ts",
"seed:notes": "ts-node remote/notes/src/app/database/database.seeder.ts",
"seed:users": "ts-node remote/users/src/app/database/database.seeder.ts"
},
"private": true,
"dependencies": {
"@angular/animations": "~17.1.0",
"@angular/cdk": "~17.2.2",
"@angular/common": "~17.1.0",
"@angular/compiler": "~17.1.0",
"@angular/core": "~17.1.0",
"@angular/forms": "~17.1.0",
"@angular/material": "~17.2.2",
"@angular/platform-browser": "~17.1.0",
"@angular/platform-browser-dynamic": "~17.1.0",
"@angular/platform-server": "~17.1.0",
"@angular/router": "~17.1.0",
"@angular/ssr": "~17.1.0",
"@ctrl/ngx-codemirror": "^7.0.0",
"@faker-js/faker": "^8.4.1",
"@module-federation/node": "~1.0.5",
"@nestjs/common": "^10.0.2",
"@nestjs/config": "^3.2.0",
"@nestjs/core": "^10.0.2",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mapped-types": "*",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.0.2",
"@nestjs/swagger": "^7.3.0",
"@nestjs/typeorm": "^10.0.2",
"@ngrx/component-store": "~17.0.0",
"@ngrx/effects": "~17.0.0",
"@ngrx/entity": "~17.0.0",
"@ngrx/router-store": "~17.0.0",
"@ngrx/store": "~17.0.0",
"@nx/angular": "18.0.8",
"axios": "^1.6.0",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"concurrently": "^8.2.2",
"cors": "~2.8.5",
"express": "~4.18.2",
"highlight.js": "^11.9.0",
"jsonwebtoken": "^9.0.2",
"ngx-highlightjs": "^10.0.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pluralize": "^8.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "~7.8.0",
"sqlite3": "^5.1.7",
"tslib": "^2.3.0",
"typeorm": "^0.3.20",
"typeorm-extension": "^3.5.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~17.1.0",
"@angular-devkit/core": "~17.1.0",
"@angular-devkit/schematics": "~17.1.0",
"@angular-eslint/eslint-plugin": "~17.0.0",
"@angular-eslint/eslint-plugin-template": "~17.0.0",
"@angular-eslint/template-parser": "~17.0.0",
"@angular/cli": "~17.1.0",
"@angular/compiler-cli": "~17.1.0",
"@angular/language-service": "~17.1.0",
"@angular/material": "^17.2.2",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@ngrx/schematics": "~17.0.0",
"@ngrx/store-devtools": "~17.0.0",
"@nx/cypress": "18.0.8",
"@nx/eslint": "18.0.8",
"@nx/eslint-plugin": "18.0.8",
"@nx/jest": "18.0.8",
"@nx/js": "18.0.8",
"@nx/nest": "^18.0.8",
"@nx/node": "18.0.8",
"@nx/web": "18.0.8",
"@nx/webpack": "18.0.8",
"@nx/workspace": "18.0.8",
"@schematics/angular": "~17.1.0",
"@swc-node/register": "~1.8.0",
"@swc/core": "~1.3.85",
"@swc/helpers": "~0.5.2",
"@types/bcrypt": "^5.0.2",
"@types/cors": "~2.8.5",
"@types/express": "4.17.14",
"@types/jest": "^29.4.0",
"@types/node": "18.16.9",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"autoprefixer": "^10.4.0",
"browser-sync": "^3.0.0",
"cypress": "13.6.4",
"eslint": "~8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.13.4",
"jasmine-marbles": "~0.9.1",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^29.4.1",
"jest-preset-angular": "~13.1.4",
"json-server": "^0.17.4",
"nx": "18.0.8",
"postcss": "^8.4.5",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.2",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"tscpaths": "^0.0.9",
"typescript": "~5.3.2",
"webpack-cli": "^5.1.4"
}
}