-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.98 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
63
64
65
66
67
{
"name": "typed-react-router",
"description": "Typed route paths & typed route parameters on top of React Router V6, providing better editor support and increased safety",
"author": "Bram Hoendervangers <[email protected]>",
"repository": "https://github.com/bram209/typed-react-router",
"license": "MIT",
"version": "0.1.4",
"keywords": [
"typescript",
"react-router",
"react",
"router",
"typed",
"routes",
"react router typescript",
"react router types",
"react router dom",
"react router dom types",
"react router dom typescript"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"lint": "yarn lint:format && yarn lint:fix"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.14.3",
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^15.12.2",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"babel-loader": "^8.2.2",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-router-dom": "^6.0.2",
"rollup-plugin-typescript-paths": "^1.3.0",
"rollup-plugin-visualizer": "^5.5.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.5.2",
"vite": "^2.1.0"
},
"pre-commit": "lint",
"files": [
"dist"
],
"main": "./dist/main.cjs.js",
"module": "./dist/main.es.js",
"exports": {
".": {
"import": "./dist/main.es.js",
"require": "./dist/main.cjs.js"
}
},
"typings": "./dist/main.d.ts"
}