forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.99 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
{
"name": "angular",
"version": "0.0.0",
"scripts": {
"preinstall": "npm run preinstall:rxdb",
"preinstall:rxdb": "(cd ../../ && npx [email protected] pack ../../ --filename ./examples/angular/rxdb-local.tgz)",
"postinstall": "npm run postinstall:ngcc && npm run postinstall:logo",
"postinstall:ngcc": "ngcc",
"postinstall:logo": "copyfiles ../../docs-src/files/logo/logo.svg src/assets/ --flat --up",
"start": "concurrently \"npm run server\" \"npm run dev\"",
"server": "pouchdb-server --host 0.0.0.0 -p 10101 -m -d /tmp/pouchdb-server/ -n true",
"ng": "ng",
"type": "module",
"dev": "ng serve",
"build": "npm run build:frontend && npm run build:copy && npm run build:server && echo \"BUILD SUCCESS\"",
"build:frontend": "node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng build --configuration production --aot",
"build:server": "node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng run angular:server:production",
"build:serve": "ws -p 8888 -d dist/angular/browser",
"build:serve9000": "ws -p 9000 -d dist/angular/",
"build:copy": "cp test/multitab.html dist/angular/browser/multitab.html",
"test": "testcafe chromium -e test/e2e.test.js --hostname localhost --selector-timeout 30000",
"test:ci": "testcafe chrome -e test/e2e.test.js --hostname localhost --selector-timeout 30000 --ajax-request-timeout 1000",
"test:build": "concurrently \"npm run server\" \"npm run build:serve\" \"npm run test:ci\" --kill-others --success first",
"// test:ssr": "TODO use npm run serve:ssr instead when bug is fixed",
"test:ssr": "concurrently \"npm run server\" \"npm run dev:ssr\" \"sleep 20 && ts-mocha --bail --exit ./test/ssr.test.ts\" --kill-others --success first",
"lint": "tslint app/src/**/*.ts",
"analyze": "webpack-bundle-analyzer dist/angular/stats-es2015.json",
"dev:ssr": "ng run angular:serve-ssr",
"serve:ssr": "node dist/angular/server/main.js",
"build:ssr": "ng build --configuration production && ng run angular:server:production",
"prerender": "ng run angular:prerender",
"start:android": "npx cap open android",
"build:capacitor": "node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng build --configuration capacitor --aot && npx cap sync"
},
"private": true,
"author": "pubkey",
"license": "MIT",
"dependencies": {
"@angular/animations": "16.2.8",
"@angular/cdk": "16.2.7",
"@angular/common": "16.2.8",
"@angular/compiler": "16.2.8",
"@angular/core": "16.2.8",
"@angular/forms": "16.2.8",
"@angular/material": "16.2.7",
"@angular/platform-browser": "16.2.8",
"@angular/platform-browser-dynamic": "16.2.8",
"@angular/platform-server": "16.2.8",
"@angular/pwa": "16.2.6",
"@angular/router": "16.2.8",
"@angular/service-worker": "16.2.8",
"@capacitor/android": "5.4.2",
"@capacitor/angular": "2.0.3",
"@capacitor/core": "5.4.2",
"@capacitor/ios": "5.4.2",
"@capacitor/preferences": "5.0.6",
"@nguniversal/express-engine": "16.2.0",
"assert": "2.1.0",
"express": "4.18.2",
"express-pouchdb": "4.2.0",
"font-awesome": "4.7.0",
"material-design-icons": "3.0.1",
"mocha": "10.2.0",
"pouchdb-server": "4.2.0",
"roboto-npm-webfont": "1.0.1",
"rxdb": "file:rxdb-local.tgz",
"rxjs": "7.8.1",
"stream": "0.0.2",
"tslib": "2.6.2",
"zone.js": "0.14.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "16.2.6",
"@angular/cli": "16.2.6",
"@angular/compiler-cli": "16.2.8",
"@angular/language-service": "16.2.8",
"@capacitor/cli": "latest",
"@nguniversal/builders": "16.2.0",
"@types/express": "4.17.19",
"@types/mocha": "10.0.2",
"@types/node": "18.18.4",
"async-test-util": "2.1.1",
"concurrently": "8.2.1",
"copyfiles": "2.4.1",
"local-web-server": "5.3.0",
"testcafe": "3.3.0",
"ts-mocha": "10.0.0",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"typescript": "5.2.2",
"webpack-bundle-analyzer": "4.9.1"
}
}