-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
{
"name": "rn-components-kit",
"version": "1.0.2",
"private": false,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "eslint --fix ./packages",
"clean": "rm -rf node_modules && npm install"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@rn-components-kit/checkbox": "^1.0.3",
"@rn-components-kit/divider": "^1.0.0",
"@rn-components-kit/icon": "^1.0.0",
"@rn-components-kit/switch": "^1.0.0",
"@rn-components-kit/text": "^1.0.0",
"react-native-linear-gradient": "^2.5.6",
"react-native-status-bar-height": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/runtime": "^7.4.4",
"@types/react-native": "^0.57.63",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.54.1",
"react": "16.8.3",
"react-native": "0.59.8",
"react-test-renderer": "16.8.3"
},
"jest": {
"preset": "react-native"
},
"keywords": [
"react-native",
"reactnative",
"reactjs",
"UI kit"
],
"author": "SmallStoneSK",
"license": "MIT"
}