-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.44 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
{
"name": "react-router-template-link",
"version": "2.7.2",
"description": "react-router-template-link",
"type": "module",
"main": "es/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"sideEffects": false,
"files": [
"lib",
"es"
],
"scripts": {
"build": "rm -rf es/ && tsc",
"lint": "eslint src",
"lint-type": "tsc --noEmit",
"test": "vitest run --coverage",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/dancerphil/react-router-template-link"
},
"author": "Cong Zhang <dancerphil1994@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": "^18.2.0",
"react-router-dom": "^6.4.2"
},
"dependencies": {
"query-string": "^7.1.1"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@stylistic/eslint-plugin": "^4.4.0",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/react": "^18.0.21",
"@types/react-test-renderer": "^18.0.0",
"@vitest/coverage-v8": "3.1.4",
"eslint": "^9.27.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^8.0.1",
"jsdom": "^26.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.2",
"react-test-renderer": "^18.2.0",
"stylelint": "^14.13.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0",
"vitest": "^3.1.4"
}
}