-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.85 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
{
"name": "nauth0",
"version": "0.1.0",
"description": "Easy and awesome authentication for NextJS applications using Auth0",
"main": "index.js",
"repository": "[email protected]:jamiedavenport/nauth0.git",
"author": "Jamie Davenport <[email protected]>",
"private": true,
"license": "MIT",
"scripts": {
"dev": "lerna run --parallel dev",
"build": "lerna run build",
"lint": "eslint --ext .ts,.tsx,.js --max-warnings 0 --ignore-path .gitignore --cache",
"lint:all": "yarn run lint .",
"format": "prettier --ignore-path .gitignore",
"format:all": "yarn run format --write .",
"format:check": "yarn run format --check .",
"test": "lerna run --parallel test",
"prepare:canary": "yarn build",
"version:canary": "lerna version --create-release github --conventional-commits --preid canary",
"publish:canary": "lerna publish from-package --dist-tag canary --yes --no-verify-access"
},
"workspaces": [
"packages/*",
"example"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.16",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"cypress": "^6.1.0",
"eslint": "^7.14.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lerna": "^3.15.0",
"lint-staged": "^10.5.2",
"msw": "^0.24.2",
"prettier": "^2.2.1",
"start-server-and-test": "^1.11.6",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": "yarn run lint",
"*.{ts,tsx,js,json,md}": "yarn run format --write"
}
}