forked from sergiodxa/remix-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.57 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "remix-utils",
"version": "2.5.0",
"license": "MIT",
"engines": {
"node": ">=14"
},
"browser": "./browser/index.js",
"main": "./build/index.js",
"sideEffects": false,
"scripts": {
"build": "npm run build:browser && npm run build:main",
"build:browser": "tsc --project tsconfig.json --module ESNext --outDir ./browser",
"build:main": "tsc --project tsconfig.json --module CommonJS --outDir ./build",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint --ext .ts,.tsx src/",
"test": "jest --config=config/jest.config.ts --passWithNoTests"
},
"author": {
"name": "Sergio Xalambrí",
"url": "https://sergiodxa.com",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/sergiodxa/remix-utils"
},
"keywords": [
"remix",
"remix.run",
"react",
"utils",
"request",
"response",
"csrf",
"redirect-back",
"outlet",
"client-only",
"hydrated",
"body parser"
],
"peerDependencies": {
"@remix-run/react": "^1.1.1",
"@remix-run/server-runtime": "^1.1.1",
"react": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@jest/types": "^27.2.5",
"@remix-run/node": "^1.1.1",
"@remix-run/react": "^1.1.1",
"@remix-run/server-runtime": "^1.1.1",
"@size-limit/preset-small-lib": "^4.10.2",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/react": "^17.0.14",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-jest": "^27.3.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.3.0",
"eslint-plugin-unicorn": "^32.0.1",
"jest": "^27.3.1",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-router-dom": "^6.0.0-beta.6",
"ts-node": "^10.4.0",
"typescript": "^4.2.4"
},
"dependencies": {
"type-fest": "^2.5.2",
"uuid": "^8.3.2"
}
}