-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 875 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 875 Bytes
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
{
"name": "use-tea",
"version": "0.0.1",
"main": "dist/index.js",
"repository": "https://github.com/eagle-k/use-tea.git",
"author": "eagle-k <87229746+eagle-k@users.noreply.github.com>",
"license": "MIT",
"files": [
"README.md",
"LICENSE",
"package.json",
"/dist/"
],
"scripts": {
"prebuild": "rimraf dist/",
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^26.0.24",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0",
"react-test-renderer": ">=16.9.0"
}
}