-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 4.33 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
{
"name": "mockly-workspace",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:cli:debug": "nodemon --config nodemon-debug.json",
"start:cli": "ts-node -r tsconfig-paths/register --project packages/cli/tsconfig.json packages/cli/src/debug.ts",
"build": "ng build",
"test": "ng test --passWithNoTests",
"test:ci": "ng test -passWithNoTests",
"lint": "nx lint && ng lint",
"e2e": "ng e2e",
"build:cli": "rimraf -rf packages/cli/dist/ && tsc --project packages/cli/tsconfig.json",
"build:core": "rimraf -rf packages/core/dist/ && tsc --project packages/core/tsconfig.json",
"build:angular": "rimraf -rf packages/angular/dist/ && tsc --project packages/angular/tsconfig.json",
"prebuild:angular": "rimraf -rf packages/angular/dist",
"postbuild:angular": "npm run copy:schemas && npm run copy:files && npm run copy:builders && npm run copy:collection",
"copy:schemas": "cpx packages/angular/**/schema.json packages/angular/dist",
"copy:files": "cpx packages/angular/**/files/** packages/angular/dist",
"copy:builders": "cpx packages/angular/builders.json packages/angular/dist",
"copy:collection": "cpx packages/angular/collection.json packages/angular/dist",
"replace:version": "replace-in-file ",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "ng update @nrwl/workspace",
"update:check": "ng update",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"release": "lerna publish from-package",
"version:prerelease": "lerna version prerelease --force-publish --preid alpha -m 'chore(release): publish %s'",
"preversion": "yarn test && yarn run lint && yarn run build:core && yarn run build:cli && yarn run build:angular",
"version": "node tools/lerna/replace-version.js && git add ."
},
"private": true,
"dependencies": {
"@angular-devkit/architect": "^0.801.2",
"@angular/animations": "^8.0.0",
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/core": "^8.0.0",
"@angular/forms": "^8.0.0",
"@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@angular/router": "^8.0.0",
"@nestjs/common": "^6.2.4",
"@nestjs/core": "^6.2.4",
"@nestjs/platform-express": "^6.2.4",
"@nrwl/angular": "8.2.0",
"@oclif/command": "^1.5.16",
"@oclif/config": "^1.13.2",
"@oclif/plugin-help": "^2.2.0",
"@types/express": "^4.17.0",
"@types/globby": "^9.1.0",
"@types/pouchdb": "^6.4.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.9.1",
"core-js": "^2.5.4",
"cpx": "^1.5.0",
"express-urlrewrite": "^1.2.0",
"globby": "^10.0.1",
"husky": "^3.0.1",
"nodemon": "^1.19.1",
"pouchdb": "^7.1.1",
"pouchdb-adapter-memory": "^7.1.1",
"pouchdb-find": "^7.1.1",
"rc": "^1.2.8",
"reflect-metadata": "^0.1.12",
"replace-in-file": "^4.1.1",
"rxjs": "~6.4.0",
"strip-json-comments": "^3.0.1",
"supertest": "^4.0.2",
"tslib": "^1.10.0",
"uniqid": "^5.0.3",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.800.0",
"@angular/cli": "8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@angular/language-service": "^8.0.0",
"@nestjs/schematics": "^6.3.0",
"@nestjs/testing": "^6.2.4",
"@nrwl/cypress": "8.2.0",
"@nrwl/jest": "8.2.0",
"@nrwl/nest": "8.2.0",
"@nrwl/node": "8.2.0",
"@nrwl/workspace": "8.2.0",
"@types/jest": "^24.0.15",
"@types/node": "~8.9.4",
"@types/rc": "^1.1.0",
"codelyzer": "~5.0.1",
"cypress": "~3.3.1",
"dotenv": "6.2.0",
"jest": "24.1.0",
"jest-junit": "^6.4.0",
"jest-preset-angular": "7.0.0",
"jest-watch-typeahead": "^0.4.0",
"lerna": "^3.16.0",
"prettier": "1.16.4",
"rimraf": "^3.0.0",
"ts-jest": "24.0.0",
"ts-node": "^8.3.0",
"tslint": "~5.11.0",
"typescript": "~3.4.5"
}
}