-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
33 lines (33 loc) · 1.25 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
{
"name": "@invertase/firebase-extensions",
"private": true,
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.4",
"lerna": "^4.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"spellchecker-cli": "^4.8.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"scripts": {
"prepare": "npm run lerna:bootstrap && npm run lerna:link",
"test": "lerna run test",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,mdx}\"",
"check:linting": "eslint . --max-warnings=50",
"check:formatting": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md,mdx}\"",
"check:typescript": "lerna run check:typescript",
"check:spelling": "spellchecker --quiet --files=\"docs/**/*.{md,mdx}\" --dictionaries=\"./dictionary.js\" --reports=\"spelling.json\" --plugins spell indefinite-article repeated-words syntax-mentions syntax-urls frontmatter",
"lerna:bootstrap": "lerna bootstrap --no-ci",
"lerna:link": "lerna link",
"lerna:clean": "lerna clean"
}
}