-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.51 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
59
60
61
62
{
"name": "pathpunk",
"version": "1.1.1",
"description": "A react component based router with most of the functionalities of an SPA router",
"main": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"lint": "eslint ./src/ --fix",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emekaorji/pathpunk.git"
},
"license": "MIT",
"author": {
"name": "Emeka Orji",
"email": "[email protected]",
"url": "https://github.com/emekaorji"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"router",
"spa",
"react",
"router-reload",
"router-push",
"router-query",
"router-pathname",
"dynamic-route"
],
"bugs": {
"url": "https://github.com/emekaorji/pathpunk/issues"
},
"homepage": "https://github.com/emekaorji/pathpunk#readme",
"devDependencies": {
"@types/node": "^12.20.11",
"@types/react": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.2.1",
"ts-node": "^10.2.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}