-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.11 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.11 KB
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
{
"name": "@42.nl/authentication",
"version": "2.2.1",
"description": "Authenticating with a Spring Security application and storing the currentUser.",
"files": [
"lib"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/42BV/react-authentication.git"
},
"keywords": [
"redux",
"authentication",
"Spring Boot"
],
"author": "Maarten Hus",
"license": "ISC",
"bugs": {
"url": "https://github.com/42BV/react-authentication/issues"
},
"homepage": "https://github.com/42BV/react-authentication#readme",
"peerDependencies": {
"react": "^18.0 || ^19.0",
"react-router": "^6.0 || ^7.0"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/fetch-mock": "9.2.2",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"@vitest/coverage-v8": "4.0.18",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-vitest": "0.5.4",
"globals": "17.3.0",
"husky": "9.1.7",
"jsdom": "28.0.0",
"lint-staged": "16.2.7",
"node-fetch": "3.3.2",
"np": "11.0.2",
"prettier": "3.8.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-router": "7.13.0",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0",
"vitest": "4.0.18"
},
"scripts": {
"start": "vitest --watch",
"clean": "rm -rf lib",
"test": "npm run lint && npm run test:ts && npm run test:coverage",
"test:ts": "tsc --version && tsc --noEmit",
"test:coverage": "vitest run --coverage",
"docs": "jekyll serve -s docs",
"coverage": "npm test -- --coverage",
"tsc": "npm run clean && tsc --version && tsc",
"lint": "eslint src tests",
"lint:src": "eslint src",
"lint:test": "eslint tests",
"release": "npm run tsc && np",
"dev:publish": "./scripts/dev-publish.sh",
"prepare": "husky"
},
"lint-staged": {
"{src,tests}/**/*.{js,jsx,json,scss,ts,tsx}": [
"prettier --write"
]
}
}