-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "@tiny-frontend/tiny-client-react",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly",
"preview": "vite preview",
"test": "jest ."
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"main": "./dist/tiny-client-react.umd.js",
"module": "./dist/tiny-client-react.es.js",
"exports": {
".": {
"import": "./dist/tiny-client-react.es.js",
"require": "./dist/tiny-client-react.umd.js"
}
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"setupFilesAfterEnv": [
"./jest.setup.ts"
]
},
"devDependencies": {
"@cazoo/eslint-plugin-eslint": "^1.0.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^7.0.2",
"@tiny-frontend/client": "^0.0.7",
"@types/jest": "^27.4.1",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"eslint": "^7.32.0",
"jest": "^27.5.1",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"vite": "^2.7.13"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}