-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.96 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
68
{
"name": "react-autoroute",
"version": "0.7.0",
"description": "A route auto generator based on Vite glob patterns",
"license": "Apache-2.0",
"author": "Sebastian Werner <s.werner@sebastian-software.de> (http://sebastian-software.de/werner)",
"homepage": "https://github.com/sebastian-software/react-autoroute#readme",
"repository": {
"type": "git",
"url": "https://github.com/sebastian-software/react-autoroute.git"
},
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"build:examples": "pnpm turbo build",
"check": "tsc --noEmit",
"check:examples": "pnpm turbo check",
"format": "npm run format:pkg && npm run format:lib && turbo run format --continue --parallel",
"format:lib": "prettier --write './src/**/*.{js,ts,tsx,mts,md,json,yml,yaml,css,html,json}'",
"format:pkg": "prettier-package-json --write package.json apps/*/package.json packages/*/package.json",
"release": "release-it",
"test": "jest",
"watch": "tsc --watch"
},
"types": "lib/index.d.ts",
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.4.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"babel-jest": "^29.4.2",
"eslint": "^8.34.0",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.2",
"prettier": "^2.8.4",
"prettier-package-json": "^2.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.1",
"release-it": "^15.6.0",
"turbo": "^1.7.4",
"typescript": "^4.9.5",
"vite": "^4.1.1"
},
"keywords": [
"glob",
"react-router",
"routing",
"vite"
],
"engines": {
"node": ">=14"
},
"jest": {
"testEnvironment": "node"
}
}