-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 3.51 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
{
"name": "firesagejs",
"version": "1.4.17",
"description": "🔥Surgical Precision Type Safe For Realtime Database Web, Write RTDB Code That Stand The Test Of Time",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"reinstall": "rm -rf node_modules && rm -rf package-lock.json && npm i && npx husky install",
"tsc": "tsc",
"lint": "eslint . --ext .ts --fix",
"pretty": "pretty-quick --stage --brach main",
"test": "npm run kill && firebase emulators:exec --only database \"rm -rf coverage && jest\" && npm run kill",
"rollup": "rm -rf dist && rollup -c",
"build": "rm -rf dist && tsc -p tsconfig.prod.json",
"link": "npm unlink firesagejs && npm link && npm link firesagejs",
"babel": "babel-node -x .ts -- src/fieldPath/documentId.ts",
"jest": "firebase emulators:exec --only database \"jest src/rulesUnitTesting.test.ts --collectCoverage=false\"",
"commit": "git commit --no-verify",
"kill": "kill-port 8080",
"dev": "---------------------dev------------------------",
"d-link": "npm run build && npm run link",
"d-test": "tsc && npm test",
"d-b-tsc": "npm run d-link && npm run b-uninstall && npm run b-tsc",
"d-b-test": "npm run d-b-tsc && npm run b-test",
"d-pub": "npm run build && npm publish --tag beta",
"built": "-------------test built file-----------------------",
"b-tsc": "tsc -p tsconfig.doc.json",
"b-test": "firebase emulators:exec --only database \"jest -c=jest.config.doc.js\"",
"p-q-tsc": "npm run p-reinstall && npm run p-tsc",
"p-q-test": "npm run p-q-tsc && npm run p-test",
"b-uninstall": "npm --prefix codeForDoc run uninstall",
"published": "-------------test published file-----------------------",
"p-reinstall": "npm --prefix codeForDoc run reinstall && babel-node -x .ts scripts/installLatest.ts",
"p-test": "npm --prefix codeForDoc test",
"p-tsc": "npm --prefix codeForDoc run tsc"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json,yml}": [
"eslint --fix",
"npm run pretty"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tylim88/firesagejs.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tylim88/firesagejs/issues"
},
"homepage": "https://firelordjs.com/firesage/quick_start",
"keywords": [
"firebase",
"database",
"wrapper",
"typescript",
"web",
"scalable",
"type-safe",
"V9"
],
"devDependencies": {
"@babel/node": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@firebase/rules-unit-testing": "^2.0.4",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^8.5.0",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.182",
"@types/shelljs": "^0.8.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"betwin": "^2.1.0",
"dotenv": "^16.0.1",
"eslint": "^8.21.0",
"eslint-cli": "^1.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-yml": "^1.4.0",
"firebase": "^9.9.4",
"husky": "^8.0.1",
"jest": "^28.1.3",
"kill-port": "^2.0.1",
"lint-staged": "^13.1.0",
"lodash": "^4.17.21",
"pick-random": "^3.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rollup": "^2.79.0",
"shelljs": "^0.8.5",
"tsdoc": "^0.0.4",
"typescript": "^4.8.2",
"uuid": "^8.3.2"
},
"peerDependencies": {
"firebase": "^9.9.4"
}
}