-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.58 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.58 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
{
"name": "@typeheim/monorepo",
"version": "0.1.0",
"description": "DDD framework to work with Firebase",
"main": "index.js",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"run:build": "npx tsc",
"run:bootstrap": "npx lerna bootstrap",
"run:spec": "npx jest",
"run:publish": "yarn clean:build && yarn install && yarn run:spec && yarn run:build && npx lerna publish --no-private && yarn clean:build && yarn install",
"serve:orm": "npx ts-node packages\\orm-on-fire\\dev-server.ts",
"clean:build": "node prepare-build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typeheim/fire-legion.git"
},
"keywords": [
"firestore",
"firebase",
"orm",
"odm",
"ddd",
"repository",
"entity",
"model",
"collections",
"typescript",
"ts"
],
"author": {
"name": "Dima Kolodko",
"email": "dima@kolodko.pro",
"url": "https://github.com/prowwid"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/typeheim/fire-legion/issues"
},
"homepage": "https://github.com/typeheim/fire-legion#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^13.13.0",
"@types/reflect-metadata": "^0.1.0",
"firebase": "^8.9.0",
"firebase-admin": "^9.11.0",
"firebase-functions": "^3.14.1",
"firebase-tools": "^9.16.0",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.4"
}
}