-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "@benjaminnoufel/react-router",
"version": "0.1.0",
"description": "This a React Router componant for initialize a router.",
"license": "MIT",
"main": "./lib/ReactRouter.js",
"types": "./lib/ReactRouter.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rollup --config rollup.config.js",
"types": "tsc --declaration --emitDeclarationOnly --declarationDir lib",
"lint": "eslint --ext .ts,.js,.json,tsx ."
},
"devDependencies": {
"@benjaminnoufel/eslint-config-javascript": "^0.1.3",
"@benjaminnoufel/eslint-config-typescript": "^0.1.2",
"@rollup/plugin-typescript": "^8.1.1",
"@types/react": "^16.9.51",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.5.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-react-hooks": "^4.0.8",
"rollup": "^2.38.4",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"peerDependencies": {
"@material-ui/core": "4",
"react": "16",
"react-router-dom": "5"
}
}