-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "web-router",
"version": "0.2.1",
"description": "",
"main": "src/index.ts",
"module": "src/index.ts",
"scripts": {
"test": "jest --coverage"
},
"author": "wu-yu-xuan",
"license": "WTFPL",
"typings": "index.d.ts",
"devDependencies": {
"@testing-library/react": "^9.4.0",
"@types/jest": "^25.1.2",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"semi": true,
"jsxSingleQuote": false
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"dependencies": {
"path-to-regexp": "^6.1.0"
}
}