-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "react-router-template-link",
"version": "2.7.1",
"description": "react-router-template-link",
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"sideEffects": false,
"files": [
"lib",
"es"
],
"scripts": {
"build": "rm -rf lib/ && tsc",
"build-es": "rm -rf es/ && tsc --project tsconfig.es.json",
"lint": "skr lint",
"test": "skr test -- --coverage",
"prepublishOnly": "yarn build && yarn build-es"
},
"repository": {
"type": "git",
"url": "https://github.com/dancerphil/react-router-template-link"
},
"author": "Cong Zhang <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "^18.2.0",
"react-router-dom": "^6.4.2"
},
"dependencies": {
"query-string": "^7.1.1"
},
"devDependencies": {
"@reskript/cli": "^5.7.2",
"@reskript/cli-lint": "^5.7.2",
"@reskript/cli-test": "^5.7.2",
"@reskript/config-jest": "^5.7.2",
"@reskript/config-lint": "^5.7.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.1.2",
"@types/react": "^18.0.21",
"@types/react-test-renderer": "^18.0.0",
"core-js": "^3.25.5",
"eslint": "^8.25.0",
"husky": "^8.0.1",
"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": "^4.8.4"
}
}