-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.74 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
{
"name": "@chatie/db",
"version": "0.8.21",
"main": "public_api.ts",
"description": "Real-time Database for Chatie",
"scripts": {
"clean": "shx rm -fr dist/*",
"dist": "npm run clean && npm run ng:packagr",
"generate-schema": "ts-node scripts/generate-schema",
"graphcool:restart": "chatie-graphql-local-stop && chatie-graphql-local-start",
"lint": "npm run lint:ts",
"lint:ts": "echo tslint v`tslint --version` && tslint --project tsconfig.json && tsc --noEmit",
"ng:packagr": "ng-packagr -p package.json",
"pack": "npm pack dist/",
"test": "npm run lint && npm run test:unit",
"test:debug": "BROLOG_LEVEL=silly blue-tape -r ts-node/register -r source-map-support/register src/hostie/*.spec.ts",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:unit": "blue-tape -r ts-node/register {src,tests}/**/*.spec.ts"
},
"git": {
"scripts": {
"pre-push": "bash ./scripts/pre-push.sh"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/chatie/db.git"
},
"keywords": [
"chatie",
"database"
],
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/chatie/db/issues"
},
"homepage": "https://github.com/chatie/db#readme",
"devDependencies": {
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@auth0/angular-jwt": "^3.0.0",
"@chatie/graphql": "^0.6.4",
"@types/auth0-js": "^9.10.0",
"@types/blue-tape": "^0.1.31",
"@types/dotenv": "^6.1.0",
"@types/glob": "^5.0.35",
"@types/node": "12.11.0",
"@types/semver": "^5.5.0",
"@types/ws": "^6.0.0",
"apollo-codegen": "^0.19.0",
"auth-angular": "^0.4.2",
"auth0-js": "^9.4.2",
"babel-eslint": "^10.0.0",
"blue-tape": "^1.0.0",
"brolog": "^1.2.15",
"dotenv": "^7.0.0",
"eslint": "^6.0.0",
"git-scripts": "^0.2.1",
"glob": "^7.1.2",
"graphql-tag": "^2.8.0",
"ng-packagr": "^5.0.1",
"rxjs": "^6.1.0",
"state-switch": "^0.6.2",
"shx": "^0.3.0",
"tsickle": "^0.33.0",
"ts-node": "^8.0.2",
"tslint": "^5.9.1",
"tslint-jsdoc-rules": "^0.2.0",
"typescript": "2.7.2",
"zone.js": "^0.8.25"
},
"peerDependencies": {
"@angular/core": "^6.0",
"@chatie/graphql": "^0.6.4",
"@auth0/angular-jwt": "^2.0.0",
"auth-angular": "*",
"brolog": "*",
"graphql-tag": "^2.8.0",
"jwt-decode": "^2.2.0",
"rxjs": "^6.1.0",
"state-switch": "^0.4.0"
},
"dependencies": {},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"ngPackage": {
"lib": {
"entryFile": "public_api.ts"
},
"whitelistedNonPeerDependencies": []
}
}