-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.41 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
69
70
71
72
73
74
75
{
"name": "remix-strong-routes",
"version": "3.2.0",
"description": "Worry-free Remix routes with Typescript",
"engines": {
"node": ">=18.16",
"npm": ">=9.5",
"yarn": ">=1.22"
},
"browser": "./browser/index.js",
"main": "./build/index.js",
"sideEffects": false,
"scripts": {
"build": "npm run build:browser && npm run build:main",
"build:browser": "npx --no-install tsc --project tsconfig.json --module ESNext --outDir ./browser",
"build:main": "npx --no-install tsc --project tsconfig.json --module CommonJS --outDir ./build",
"typecheck": "npx --no-install tsc --project tsconfig.json --noEmit",
"lint": "npx --no-install eslint --no-error-on-unmatched-pattern --ext .ts,.tsx src",
"lint:report": "npm run lint -- --output-file eslint_report.json --format json",
"format": "npx --no-install prettier --write --ignore-unknown .",
"test": "npx --no-install vitest run",
"test:watch": "npx --no-install vitest",
"test:coverage": "npx --no-install vitest run --coverage"
},
"keywords": [
"remix",
"remix.run",
"react",
"request",
"response"
],
"author": {
"name": "tatemz",
"url": "https://github.com/tatemz",
"email": "tatemz@proton.me"
},
"repository": {
"type": "git",
"url": "https://github.com/tatemz/remix-strong-routes.git"
},
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"effect": "2.0.0-next.56",
"@remix-run/react": "^2.3.1",
"@remix-run/server-runtime": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@remix-run/testing": "^2.3.1",
"@testing-library/react": "^14.1.2",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"happy-dom": "^12.10.3",
"isomorphic-fetch": "^3.0.0",
"jsdom": "^23.0.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"vitest": "^0.34.6",
"vitest-github-actions-reporter": "^0.11.0"
}
}