-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.09 KB
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
69
70
71
72
73
74
75
76
77
{
"name": "skyflow-react-js",
"preferGlobal": true,
"analyze": false,
"version": "2.5.5",
"description": "Skyflow React SDK",
"homepage": "https://github.com/skyflowapi/skyflow-react-js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:cov": "jest --coverage",
"lint": "eslint src tests",
"lint:fix": "eslint --fix src tests",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' 'tests/**/*.{js,jsx,ts,tsx,json}' --config ./.prettierrc",
"spellcheck": "cspell '**/*.{ts,tsx,js,jsx,md}'"
},
"keywords": [
"client",
"sdk",
"react",
"js"
],
"author": "Skyflow",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/skyflowapi/skyflow-react-js.git"
},
"engines": {
"node": ">=14.17",
"npm": ">=6.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.29.7",
"@babel/preset-typescript": "7.26.0",
"@babel/runtime": "7.28.2",
"@eslint/js": "9.39.4",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/jest": "30.0.0",
"@types/node": "25.9.1",
"@types/react": "18.3.17",
"@typescript-eslint/eslint-plugin": "8.60.0",
"@typescript-eslint/parser": "8.60.0",
"cspell": "4.2.8",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "17.6.0",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"prettier": "3.8.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"ts-jest": "29.4.11",
"typescript": "6.0.3"
},
"dependencies": {
"skyflow-js": "^2.7.9",
"uuid": "14.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}