-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "core-native",
"version": "2.8.1",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dionshihk/core-native-framework"
},
"scripts": {
"build": "node script/build.js",
"test": "jest --config config/jest.config.js",
"format": "prettier --write \"{src,test,script,config}/**/*.{js,ts,tsx,json}\"",
"prepublishOnly": "node script/build.js --mode fast"
},
"devDependencies": {
"@types/jest": "29.5.11",
"@types/node": "20.10.5",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"fs-extra": "11.2.0",
"jest": "29.7.0",
"prettier": "3.1.1",
"ts-jest": "29.1.1",
"typescript": "5.3.3",
"yargs": "17.7.2"
},
"dependencies": {
"@types/react": "18.2.45",
"@types/react-native": "0.72.8",
"@types/react-redux": "7.1.33",
"immer": "10.0.3",
"react": "18.2.0",
"react-redux": "7.2.8",
"redux": "4.1.2",
"redux-saga": "1.1.3",
"tslib": "2.6.2"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-native": "*"
},
"engines": {
"node": ">=18"
}
}