-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.95 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "okto-sdk-react",
"version": "0.1.9",
"description": "Okto SDK for react",
"scripts": {
"dev": "rollup -c --watch",
"build": "rollup -c",
"lint": "eslint src --fix",
"prepare": "husky",
"commitlint": "commitlint --edit ",
"test": "jest"
},
"author": "Jovian Shilton Dsouza (dsouzajovian123@gmail.com)",
"license": "ISC",
"devDependencies": {
"@babel/plugin-syntax-jsx": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/compat": "^1.0.3",
"@eslint/js": "^9.4.0",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"axios": "^1.7.2",
"axios-mock-adapter": "^1.22.0",
"babel-jest": "^29.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"globals": "^15.3.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-css-modules": "^2.1.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.0",
"prettier-eslint": "^16.3.0",
"react": "^18.3.1",
"react-test-renderer": "^18.3.1",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"ts-jest": "^29.1.5",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"peerDependencies": {
"axios": "*",
"react": "*",
"react-dom": "*"
}
}