-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.34 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
{
"name": "@skeet-framework/firestore",
"version": "2.4.2",
"description": "Skeet Framework Plugin - Firestore",
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/src/index.js",
"types": "./dist/esm/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/elsoul/skeet-firestore.git"
},
"keywords": [
"TypeScript",
"Serverless",
"Web3js",
"Skeet Plugin",
"Solana"
],
"author": "ELSOUL LABO B.V.",
"license": "Apache-2.0",
"private": false,
"bugs": {
"url": "https://github.com/elsoul/skeet-firestore/issues"
},
"homepage": "https://skeet.dev",
"scripts": {
"test": "FIRESTORE_EMULATOR_HOST=127.0.0.1:8080 jest --coverage=false --maxWorkers=1 --forceExit",
"test:ci": "npx firebase emulators:exec --only firestore 'yarn run test'",
"dev:emulator": "firebase emulators:start --only firestore --project fakeproject",
"build": "yarn version:update && yarn build:cjs && yarn build:esm",
"version:update": "ts-node -r tsconfig-paths/register --transpile-only release.ts",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:esm": "tsc -b tsconfig.esm.json",
"build-doc": "typedoc src/index.ts --out docs",
"v": "ts-node -r tsconfig-paths/register --resolveJsonModule release.ts",
"publish": "npm publish",
"dev": "npx ts-node -r tsconfig-paths/register --transpile-only src/index.ts",
"prepare": "husky install",
"lint": "eslint --ext .ts,.js --fix ."
},
"dependencies": {
"dotenv": "16.0.3",
"firebase": "10.3.0",
"firebase-admin": "11.10.1",
"jest": "29.4.3",
"node-fetch": "2.6.9"
},
"devDependencies": {
"@firebase/rules-unit-testing": "3.0.0",
"@types/jest": "29.2.5",
"@types/node": "18.11.9",
"@types/node-fetch": "2.6.2",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"babel-loader": "9.1.2",
"esbuild": "0.17.7",
"eslint": "8.47.0",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"npm-check-updates": "16.4.1",
"prettier": "2.7.1",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.2",
"typedoc": "0.24.7",
"typescript": "5.0.4"
},
"lint-staged": {
"*.{ts,css,md}": "prettier --write",
"{src,tests}/**/*.ts": "eslint --fix"
}
}