forked from dionshihk/core-native-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
{
"name": "core-native",
"version": "2.3.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.json",
"format": "prettier --config config/prettier.json --write \"{src,test,script,config}/**/*.{js,ts,tsx,json}\""
},
"devDependencies": {
"@types/jest": "26.0.14",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"chalk": "4.1.0",
"eslint": "7.9.0",
"eslint-config-prettier": "6.11.0",
"fs-extra": "9.0.1",
"jest": "26.4.2",
"prettier": "2.1.2",
"ts-jest": "26.4.0",
"typescript": "4.0.3",
"yargs": "15.4.1"
},
"dependencies": {
"@types/node": "14.11.1",
"@types/react": "*",
"@types/react-native": "0.63.19",
"@types/react-redux": "7.1.9",
"immer": "7.0.9",
"react": "16.13.1",
"react-redux": "7.2.1",
"redux": "4.0.5",
"redux-saga": "1.1.3",
"tslib": "2.0.1"
},
"peerDependencies": {
"@types/node": "14.11.1",
"@types/react": "*",
"@types/react-native": "0.63.19",
"@types/react-redux": "7.1.9",
"immer": "7.0.9",
"react": "16.13.1",
"react-redux": "7.2.1",
"redux": "4.0.5",
"redux-saga": "1.1.3",
"tslib": "2.0.1"
}
}