-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·125 lines (125 loc) · 4.69 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
{
"name": "firemodel",
"version": "0.59.7",
"description": "Modeling, Access, and Mocking for Firebase Projects",
"license": "MIT",
"repository": "https://github.com/forest-fire/firemodel",
"author": "Ken Snyder <[email protected]>",
"keywords": [
"typescript",
"firebase"
],
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"typings": "dist/es/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"tnode": "yarn ts-node -r tsconfig-paths/register",
"clean:nuclear": "rimraf lib dist node_modules && yarn cache clean && rm yarn.lock && yarn && yarn upgrade",
"lint": "./node_modules/.bin/tslint --force --format verbose \"src/**/*.ts\"",
"build": "run-s clean build:rollup",
"build:cjs": "esbuild --bundle src/index.ts --outdir=dist/cjs --loader:.ts=ts --external:firebase-admin --external:@firebase/firestore --sourcemap=inline --format=cjs",
"build:es": "esbuild --bundle src/index.ts --loader:.ts=ts --external:@firebase/firestore --external:firebase-admin --sourcemap=inline --format=esm --outfile=dist/esm/index.mjs",
"build:tsc": "run-s clean build:tsc:cjs build:tsc:es",
"build:tsc:es": "ttsc -P tsconfig.es.json",
"build:tsc:cjs": "ttsc -P tsconfig.cjs.json",
"build:typings": "ttsc -P tsconfig.typings.json --emitDeclarationOnly",
"build:rollup": "rollup -c",
"build:nuclear": "yarn clean:nuclear && yarn build",
"autoindex": "yarn dd autoindex",
"test": "jest",
"deploy": "run-s clean build build:typings",
"package": "./node_modules/.bin/ts-node ./scripts/package.ts ",
"cli": "./node_modules/.bin/ts-node cli/index.ts --",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs",
"watch": "run-p watch:es watch:cjs",
"watch:es": "tsc -w -P tsconfig.esnext.json",
"watch:cjs": "tsc -w -P tsconfig.cjs.json",
"watch:autoindex": "yarn do autoindex -w",
"visualize": "yarn madge src --ts-config tsconfig.json --extensions ts -i /tmp/dep-visualize.png && open /tmp/dep-visualize.png",
"visualize:es": "yarn madge dist/es --extensions js -i /tmp/es-dep-visualize.png && open /tmp/es-dep-visualize.png",
"circular": "yarn madge src --ts-config tsconfig.json --extensions ts --circular",
"circular:es": "yarn madge dist/es/util --extensions js --circular",
"circular:cjs": "yarn madge dist/cjs --extensions js --circular",
"orphans": "yarn madge src --ts-config tsconfig.json --extensions ts --orphans",
"leaves": "yarn madge src --ts-config tsconfig.json --extensions ts --leaves",
"summary": "yarn madge src --ts-config tsconfig.json --extensions ts --summary"
},
"dependencies": {
"fast-copy": "2.1.0",
"fast-deep-equal": "^3.1.3",
"native-dash": "^1.10.0",
"wait-in-parallel": "^1.2.6"
},
"peerDependencies": {
"universal-fire": "~0.59.7"
},
"optionalDependencies": {
"common-types": "^1.25.0",
"date-fns": "^2.15.0",
"dexie": "^3.0.2",
"firebase-key": "^2.0.2",
"firemock": "~0.59.7",
"pluralize": "^8.0.0",
"reflect-metadata": "^0.1.13",
"typed-conversions": "^0.11.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^8.0.0",
"@types/faker": "^5.1.5",
"@types/jest": "^26.0.0",
"@types/js-yaml": "^4.0.0",
"@types/lodash": "^4.14.149",
"@types/lodash-es": "^4.17.3",
"@types/node": "^14.0.0",
"@types/pluralize": "^0.0.29",
"@types/rimraf": "^3.0.0",
"@types/stack-trace": "^0.0.29",
"@vuepress/plugin-back-to-top": "^1.5.0",
"@vuepress/plugin-last-updated": "^1.5.0",
"@vuepress/plugin-medium-zoom": "^1.5.0",
"@vuepress/plugin-pwa": "^1.5.0",
"async-shelljs": "^0.1.4",
"babel-jest": "^26.0.1",
"chalk": "^4.1.0",
"dd": "^0.11.3",
"esbuild": "^0.9.2",
"fake-indexeddb": "^3.0.2",
"firemock": "~0.59.7",
"jest": "^26.0.1",
"jest-babel": "^1.0.1",
"jest-extended": "^0.11.5",
"js-yaml": "^4.0.0",
"lodash": "^4.17.15",
"madge": "^4.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"rollup": "^2.18.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"test-console": "^1.1.0",
"ts-jest": "^26.1.1",
"ts-node": "^10",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"ttypescript": "^1.5.10",
"typescript": "^4.2.4",
"typescript-transform-paths": "^2.1.0",
"universal-fire": "^0.59.7",
"vue-property-decorator": "^9.1.2",
"vuepress": "^1.5.0",
"vuepress-plugin-autometa": "^0.1.13"
},
"engines": {
"node": ">=12"
}
}