-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.97 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
{
"name": "lembas-root",
"version": "0.0.0",
"scripts": {
"clean": "rimraf dist",
"commit": "git-cz",
"test:singles": "nx affected --target=test",
"test:e2e": "start-server-and-test server-and-db http://localhost:3333/api/posts cy:run",
"test": "run-p test:singles lint",
"build": "nx run-many --target=build --projects='lembas,lembas-cypress'",
"generate-toc": "doctoc README.md",
"format:fix": "pretty-quick --staged",
"lint": "eslint . --ext .js,.ts",
"semantic-release": "semantic-release",
"prepare": "husky install",
"db": "nx db demo-server",
"server": "nx serve demo-server",
"server-and-db": "start-server-and-test db http://localhost:3020 prisma-and-server",
"prisma-and-server": "run-s prisma:push server",
"demo": "nx run-many --target=serve --projects=demo,demo-server",
"test:smoke:watch": "run-p server-and-db cy:open",
"test:smoke": "run-p server-and-db cy:run",
"version:local": "nx affected --target=version",
"prisma:push": "prisma db push",
"prisma-and-e2e": "run-s prisma:push cy:run",
"cy:open": "nx e2e lembas-e2e --watch",
"cy:run": "nx e2e lembas-e2e",
"postinstall": "ngcc --properties es2020 browser module main"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"db seeding",
"smoke testing",
"smoke tests",
"e2e tests",
"database seeding",
"data seeding"
],
"author": {
"name": "Shai Reznik",
"company": "HiRez.io"
},
"license": "MIT",
"workspaces": [
"packages/lembas",
"packages/lembas-cypress"
],
"devDependencies": {
"@angular-devkit/build-angular": "14.1.3",
"@angular-eslint/eslint-plugin": "14.0.2",
"@angular-eslint/eslint-plugin-template": "14.0.2",
"@angular-eslint/template-parser": "14.0.2",
"@angular/cli": "~14.1.0",
"@angular/compiler-cli": "14.1.3",
"@angular/language-service": "14.1.3",
"@commitlint/cli": "17.0.3",
"@commitlint/config-angular": "^17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@hirez_io/jest-single": "1.1.6",
"@jscutlery/semver": "2.26.0",
"@nestjs/schematics": "9.0.0",
"@nestjs/testing": "9.0.0",
"@nrwl/angular": "14.5.8",
"@nrwl/cli": "14.5.8",
"@nrwl/cypress": "14.5.8",
"@nrwl/eslint-plugin-nx": "14.5.8",
"@nrwl/jest": "14.5.8",
"@nrwl/js": "14.5.8",
"@nrwl/nest": "14.5.8",
"@nrwl/node": "14.5.8",
"@nrwl/workspace": "14.5.8",
"@types/jest": "^27.4.1",
"@types/mock-fs": "4.13.1",
"@types/node": "18.7.8",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"all-contributors-cli": "6.20.0",
"axios": "0.27.2",
"commitizen": "4.2.5",
"cypress": "9.6.1",
"cz-conventional-changelog": "3.3.0",
"doctoc": "2.1.0",
"eslint": "8.22.0",
"eslint-config-prettier": "8.4.0",
"eslint-plugin-cypress": "^2.10.3",
"execa": "5.1.1",
"husky": "^7.0.4",
"jest": "^28.1.3",
"jest-preset-angular": "12.2.0",
"memfs": "3.4.4",
"mock-fs": "5.1.2",
"ngx-deploy-npm": "4.2.1",
"npm-run-all": "^4.1.5",
"nx": "14.5.8",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"prisma": "3.14.0",
"rimraf": "3.0.2",
"rxjs": "7.5.6",
"semantic-release": "^19.0.3",
"start-server-and-test": "1.14.0",
"ts-jest": "^28.0.8",
"ts-node": "10.9.1",
"typescript": "4.7.4"
},
"dependencies": {
"@angular/animations": "14.1.3",
"@angular/common": "14.1.3",
"@angular/compiler": "14.1.3",
"@angular/core": "14.1.3",
"@angular/forms": "14.1.3",
"@angular/platform-browser": "14.1.3",
"@angular/platform-browser-dynamic": "14.1.3",
"@angular/router": "14.1.3",
"@nestjs/common": "9.0.0",
"@nestjs/core": "9.0.0",
"@nestjs/platform-express": "9.0.0",
"@prisma/client": "3.14.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.0.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
}
}