forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) 路 2.41 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) 路 2.41 KB
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
{
"name": "angular",
"version": "0.0.0",
"scripts": {
"preinstall": "npm run preinstall:rxdb && npm run preinstall:versions",
"preinstall:rxdb": "(cd ../../ && npx yarn@1.13.0 pack ../../ --filename ./examples/angular/rxdb-local.tgz)",
"preinstall:versions": "node ./scripts/ensure-equal-versions.js",
"postinstall": "ngcc",
"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",
"server:show": "node server.js",
"ng": "ng",
"dev": "ng serve",
"build": "ng build --prod --aot --stats-json && npm run build:copy && echo \"BUILD SUCCESS\"",
"build:serve": "ws -p 8888 -d dist/angular/",
"build:serve9000": "ws -p 9000 -d dist/angular/",
"build:copy": "cp test/multitab.html dist/angular/multitab.html",
"test": "testcafe chromium test/ --selector-timeout 30000",
"test:build": "concurrently \"npm run build:serve\" \"npm run test\" --kill-others --success first",
"lint": "tslint app/src/**/*.ts",
"analyze": "webpack-bundle-analyzer dist/angular/stats-es2015.json"
},
"private": true,
"author": "pubkey",
"license": "MIT",
"dependencies": {
"@angular/animations": "10.1.4",
"@angular/cdk": "10.2.4",
"@angular/common": "10.1.4",
"@angular/compiler": "10.1.4",
"@angular/core": "10.1.4",
"@angular/forms": "10.1.4",
"@angular/material": "10.2.4",
"@angular/platform-browser": "10.1.4",
"@angular/platform-browser-dynamic": "10.1.4",
"@angular/pwa": "0.1001.4",
"@angular/router": "10.1.4",
"@angular/service-worker": "10.1.4",
"font-awesome": "4.7.0",
"pouchdb-adapter-http": "7.2.2",
"pouchdb-adapter-idb": "7.2.2",
"roboto-npm-webfont": "1.0.1",
"rxdb": "file:rxdb-local.tgz",
"rxjs": "6.6.3",
"tslib": "2.0.2",
"zone.js": "0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1001.4",
"@angular/cli": "10.1.4",
"@angular/compiler-cli": "10.1.4",
"@angular/language-service": "10.1.4",
"@types/node": "13.13.15",
"@types/pouchdb-adapter-http": "6.1.3",
"@types/pouchdb-adapter-idb": "6.1.3",
"async-test-util": "1.7.3",
"concurrently": "5.3.0",
"local-web-server": "4.2.1",
"pouchdb-server": "4.2.0",
"testcafe": "1.9.4",
"ts-node": "9.0.0",
"tslint": "6.1.3",
"typescript": "4.0.3",
"webpack-bundle-analyzer": "3.9.0"
}
}