forked from Unleash/proxy-client-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "@unleash/proxy-client-react",
"version": "3.6.0",
"description": "React interface for working with unleash",
"main": "./dist/index.js",
"browser": "./dist/index.browser.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist",
"LICENCE.txt"
],
"repository": {
"type": "git",
"url": "https://github.com/Unleash/unleash-proxy-react"
},
"scripts": {
"build": "webpack --mode=production",
"build-watch": "webpack --watch",
"prepare": "yarn run build",
"test": "jest --watch",
"test:ci": "CI=true jest --watch=false --watchAll=false --coverage --ci --reporters=default --collectCoverageFrom=src/**/*"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.0",
"@types/jest": "^27.0.2",
"@types/react": "^18.0.10",
"jest": "^27.1.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-test-renderer": "^18.1.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.1.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"unleash-proxy-client": "^2.4.3",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0"
},
"peerDependencies": {
"unleash-proxy-client": "^2.5.0"
}
}