-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "recoil-mock",
"version": "0.1.6",
"description": "Recoil mocking for tests",
"main": "dist/index.js",
"types": "src/index.d.ts",
"files": [
"dist",
"src",
"original-recoil.js",
"original-recoil.d.ts"
],
"author": "Babel, Inc. <contact@babel.jp>",
"repository": {
"type": "git",
"url": "https://github.com/babel-jp/recoil-mock.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.14",
"babel-jest": "^29.6.1",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recoil": "^0.7.7",
"typescript": "^5.1.6"
},
"peerDependencies": {
"recoil": "^0.7.4"
},
"scripts": {
"test": "jest",
"build": "tsc",
"watch": "tsc --watch"
}
}