-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.6 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
{
"name": "react-native-kondo",
"version": "2.1.3-beta.0",
"description": "React Native primitives and utilities for design systems",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"next:build": "next build docs",
"next:dev": "next docs",
"next:export": "next export docs",
"next:start": "next start docs",
"prettier": "prettier --write '**/*'",
"tsc": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AppAndFlow/react-native-kondo.git"
},
"keywords": [
"react",
"react-native",
"kondo",
"design system"
],
"author": "AppAndFlow",
"license": "MIT",
"bugs": {
"url": "https://github.com/AppAndFlow/react-native-kondo/issues"
},
"homepage": "https://github.com/AppAndFlow/react-native-kondo#readme",
"devDependencies": {
"@types/hoist-non-react-statics": "^3.3.1",
"@types/node": "^12.12.21",
"@types/react": "16.9.35",
"@types/react-native": "^0.60.25",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"next": "^9.1.6",
"prettier": "^1.19.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "0.63.4",
"typescript": "4.1.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.1"
}
}