-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
{
"name": "firestore-migrator",
"version": "0.0.0-semantically-released",
"description": "A library for writing code in TypeScript for migrating Firestore collections.",
"homepage": "https://github.com/WillBooster/firestore-migrator",
"bugs": {
"url": "https://github.com/WillBooster/firestore-migrator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/WillBooster/firestore-migrator.git"
},
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "cross-env NODE_ENV=production yarn rollup -c",
"cleanup": "yarn format && yarn lint-fix",
"format": "sort-package-json && yarn prettier",
"lint": "eslint \"./{packages/*/,}{src,__tests__}/**/*.{js,jsx,ts,tsx}\"",
"lint-fix": "yarn lint --fix",
"prettier": "prettier --write \"**/{.*/,}*.{css,htm,html,js,json,jsx,md,scss,ts,tsx,vue,yaml,yml}\" \"!**/test-fixtures/**\"",
"release": "dotenv -- semantic-release",
"release-test": "yarn release -d",
"typecheck": "tsc --noEmit"
},
"prettier": "@willbooster/prettier-config",
"dependencies": {
"firebase-admin": "8.13.0",
"lodash.clonedeep": "4.5.0",
"lodash.isequal": "4.5.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/node": "7.26.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-numeric-separator": "7.18.6",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@types/lodash.clonedeep": "4.5.9",
"@types/lodash.isequal": "4.5.8",
"@types/node": "14.18.63",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"@wessberg/rollup-plugin-ts": "1.3.14",
"@willbooster/eslint-config-ts": "4.0.3",
"@willbooster/prettier-config": "3.0.0",
"@willbooster/renovate-config": "3.0.0",
"babel-plugin-transform-remove-console": "6.9.4",
"cross-env": "7.0.3",
"dotenv-cli": "3.2.0",
"eslint": "7.32.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "3.4.1",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"prettier": "2.8.8",
"rollup": "2.79.2",
"semantic-release": "17.4.7",
"sort-package-json": "1.57.0",
"typescript": "3.9.10"
}
}