-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
155 lines (155 loc) · 8.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
{
"name": "blueprint",
"version": "0.0.0",
"scripts": {
"postinstall": "npm-run-all postinstall:*",
"postinstall:generate-data": "ts-node --skip-project ./scripts/generate-example-data.ts",
"analyze": "npm-run-all analyze:*",
"analyze:aws": "webpack-bundle-analyzer ./dist/aws/stats.json",
"analyze:blueprint": "webpack-bundle-analyzer ./dist/blueprint/stats.json",
"analyze:firebase": "webpack-bundle-analyzer ./dist/firebase/stats.json",
"analyze:pouchdb": "webpack-bundle-analyzer ./dist/pouchdb/stats.json",
"analyze:watermelondb": "webpack-bundle-analyzer ./dist/watermelondb/stats.json",
"analyze:rxdb-lokijs": "webpack-bundle-analyzer ./dist/rxdb-lokijs/stats.json",
"analyze:rxdb-dexie": "webpack-bundle-analyzer ./dist/rxdb-dexie/stats.json",
"build": "rimraf ./dist && npm-run-all build:*",
"build:aws": "ng build --configuration production --aot --no-progress --project aws --stats-json",
"build:firebase": "ng build --configuration production --aot --no-progress --project firebase --stats-json",
"build:pouchdb": "ng build --configuration production --aot --no-progress --project pouchdb --stats-json",
"build:rxdb-lokijs": "ng build --configuration production --aot --no-progress --project rxdb-lokijs --stats-json",
"build:rxdb-dexie": "ng build --configuration production --aot --no-progress --project rxdb-dexie --stats-json",
"build:watermelondb": "ng build --configuration production --aot --no-progress --project watermelondb --stats-json",
"build:template": "ng build --configuration production --aot --no-progress --stats-json",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"measure:size": "ts-node --skip-project ./scripts/build-size-calculator.ts",
"aa-aggregate-metrics": "ts-node --skip-project --compiler-options '{\"module\": \"commonjs\"}' ./scripts/aggregate-metrics.ts",
"aggregate-metrics": "node --experimental-modules ./scripts/aggregate-metrics.mjs",
"generate-feature-table": "ts-node --skip-project ./scripts/generate-feature-table.ts && node --experimental-modules ./scripts/feature-table-to-markdown.mjs",
"ng": "ng",
"dev:aws": "npm run client:aws",
"dev:firebase": "concurrently \"npm run server:firebase\" \"npm run client:firebase\"",
"dev:pouchdb": "concurrently \"npm run server:pouchdb\" \"npm run client:pouchdb\"",
"dev:rxdb-lokijs": "concurrently \"npm run server:rxdb\" \"npm run client:rxdb-lokijs\"",
"dev:rxdb-dexie": "concurrently \"npm run server:rxdb\" \"npm run client:rxdb-dexie\"",
"dev:watermelondb": "concurrently \"npm run server:rxdb\" \"npm run client:watermelondb\"",
"start:aws": "http-server ./dist/aws -p 3000 -c 2592000",
"start:firebase": "concurrently \"npm run server:firebase\" \"sleep 10 && http-server ./dist/firebase -p 3000 -c 2592000\"",
"start:pouchdb": "concurrently \"npm run server:pouchdb\" \"http-server ./dist/pouchdb -p 3000 -c 2592000\" --kill-others --success first",
"start:rxdb-lokijs": "concurrently \"npm run server:rxdb\" \"http-server ./dist/rxdb-lokijs -p 3000 -c 2592000\"",
"start:rxdb-dexie": "concurrently \"npm run server:rxdb\" \"http-server ./dist/rxdb-dexie -p 3000 -c 2592000\"",
"start:watermelondb": "http-server ./dist/watermelondb -p 3000 -c 2592000",
"server:firebase": "concurrently \"firebase emulators:start --only firestore\" \"npm run server:firebase:import\"",
"server:firebase:setup": "firebase setup:emulators:firestore",
"server:firebase:import": "ts-node --skip-project ./projects/firebase/src/import-example-data.ts",
"server:pouchdb": "pouchdb-server --in-memory --port 5984",
"server:pouchdb:couch": "concurrently \"npm run server:pouchdb:data\" \"npm run server:pouchdb:couchdb\"",
"server:pouchdb:couchdb": "sh ./projects/pouchdb/src/server.sh",
"server:pouchdb:data": "ts-node --skip-project ./projects/pouchdb/src/server.ts",
"server:rxdb": "ts-node --skip-project ./projects/rxdb-base/src/server.ts",
"client": "ng serve",
"client:aws": "ng serve --project aws --port 3000",
"client:firebase": "ng serve --project firebase --port 3000",
"client:pouchdb": "ng serve --project pouchdb --port 3000",
"client:rxdb-lokijs": "ng serve --project rxdb-lokijs --port 3000",
"client:rxdb-dexie": "ng serve --project rxdb-dexie --port 3000",
"client:watermelondb": "ng serve --project watermelondb --port 3000",
"test:wait-for-frontend": "ts-node --skip-project ./scripts/wait-for-frontend.ts",
"test": "testcafe chrome:headless --hostname localhost -e test/e2e.test.ts",
"test:aws": "PROJECT_KEY=aws NODE_OPTIONS=--max_old_space_size=4096 concurrently \"npm run start:aws\" \"npm run test:wait-for-frontend && npm run test\" --kill-others --success first",
"test:firebase": "PROJECT_KEY=firebase NODE_OPTIONS=--max_old_space_size=4096 concurrently \"npm run start:firebase\" \"npm run test:wait-for-frontend && npm run test\" --kill-others --success first",
"test:pouchdb": "PROJECT_KEY=pouchdb NODE_OPTIONS=--max_old_space_size=4096 concurrently \"npm run start:pouchdb\" \"npm run test:wait-for-frontend && npm run test\" --kill-others --success first",
"test:rxdb-lokijs": "PROJECT_KEY=rxdb-lokijs NODE_OPTIONS=--max_old_space_size=4096 concurrently \"npm run start:rxdb-lokijs\" \"npm run test:wait-for-frontend && npm run test\" --kill-others --success first",
"test:rxdb-dexie": "PROJECT_KEY=rxdb-dexie NODE_OPTIONS=--max_old_space_size=4096 concurrently \"npm run start:rxdb-dexie\" \"npm run test:wait-for-frontend && npm run test\" --kill-others --success first",
"test:watermelondb": "PROJECT_KEY=watermelondb NODE_OPTIONS=--max_old_space_size=4096 concurrently \"npm run start:watermelondb\" \"npm run test:wait-for-frontend && npm run test\" --kill-others --success first"
},
"private": true,
"dependencies": {
"@angular/animations": "17.3.0",
"@angular/cdk": "17.2.2",
"@angular/common": "17.3.0",
"@angular/compiler": "17.3.0",
"@angular/core": "17.3.0",
"@angular/forms": "17.3.0",
"@angular/material": "17.2.2",
"@angular/platform-browser": "17.3.0",
"@angular/platform-browser-dynamic": "17.3.0",
"@angular/router": "17.3.0",
"@aws-amplify/cli": "12.10.1",
"@aws-amplify/datastore": "3.12.12",
"@aws-amplify/ui-angular": "5.0.12",
"@babel/runtime": "7.23.9",
"@nozbe/watermelondb": "0.24.0",
"@types/express": "4.17.21",
"@types/express-serve-static-core": "4.17.43",
"aws-amplify": "4.3.46",
"aws-appsync": "4.1.10",
"buffer": "6.0.3",
"clone": "2.1.2",
"core-js": "3.36.0",
"cors": "2.8.5",
"express": "4.20.0",
"express-graphql": "0.12.0",
"faker": "5.5.3",
"firebase": "10.8.0",
"firebase-tools": "13.3.0",
"got": "11.8.6",
"graphql": "16.8.1",
"graphql-subscriptions": "2.0.0",
"graphql-tag": "2.12.6",
"horizon": "2.0.0",
"http-server": "14.1.1",
"jsonwebtoken": "9.0.2",
"mock-amplify-auth": "2.2.0",
"pouchdb-adapter-http": "9.0.0",
"pouchdb-adapter-idb": "9.0.0",
"pouchdb-adapter-memory": "9.0.0",
"pouchdb-find": "9.0.0",
"pouchdb-server": "4.2.0",
"rxdb": "14.17.1",
"rxfire": "6.0.5",
"rxjs": "7.8.1",
"subscriptions-transport-ws": "0.11.0",
"testcafe": "2.6.2",
"tslib": "2.6.2",
"typeface-roboto": "1.1.13",
"zone.js": "0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.2.0",
"@angular-eslint/builder": "17.2.1",
"@angular-eslint/eslint-plugin": "17.2.1",
"@angular-eslint/eslint-plugin-template": "17.2.1",
"@angular-eslint/schematics": "17.2.1",
"@angular-eslint/template-parser": "17.2.1",
"@angular/cli": "17.2.0",
"@angular/compiler-cli": "17.3.0",
"@angular/language-service": "17.3.0",
"@types/faker": "5.5.9",
"@types/jsonwebtoken": "9.0.6",
"@types/node": "20.11.28",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/eslint-plugin-tslint": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"async-test-util": "2.4.0",
"@types/lokijs": "1.5.14",
"@types/pouchdb": "6.4.2",
"@types/pouchdb-find": "7.3.3",
"@types/ws": "8.5.10",
"concurrently": "8.2.2",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"gzip-size": "6.0.0",
"markdown-table": "3.0.3",
"npm-run-all2": "6.1.2",
"pouchdb-debug": "7.2.1",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"webpack-bundle-analyzer": "4.10.1"
},
"browser": {
"fs": false
}
}