-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·80 lines (80 loc) · 2.23 KB
/
package.json
File metadata and controls
executable file
·80 lines (80 loc) · 2.23 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
78
79
80
{
"name": "native-color-cards",
"version": "1.0.0-alpha.1",
"description": "Color cards (Shortcuts.app style) for React Native",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "lib/native-color-cards.cjs.js",
"module": "lib/native-color-cards.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"release": "rimraf lib/* && npm run prettier && npm run lint && npm run build",
"build": "rollup -c",
"watch": "npm run build -- --watch",
"lint": "eslint --fix 'src/**/*.{tsx,ts}'",
"prettier": "prettier --write 'src/**/*.{tsx,ts}'"
},
"repository": {
"type": "git",
"url": "https://github.com/native-ly/native-color-cards.git"
},
"keywords": [
"TypeScript",
"React",
"React Native",
"colors",
"cards"
],
"bugs": {
"url": "https://github.com/native-ly/native-color-cards/issues"
},
"homepage": "https://github.com/native-ly/native-color-cards#readme",
"dependencies": {
"color": "^3.1.2",
"expo-blur": "^8.2.0",
"expo-haptics": "^8.3.0",
"expo-linear-gradient": "^8.3.1",
"react-native-drag-sort": "^2.3.7",
"react-native-touchable-scale": "^2.1.1",
"react-native-vector-icons": "^7.1.0",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/color": "^3.0.1",
"@types/expo": "^33.0.1",
"@types/react": "^16.9.51",
"@types/react-native-vector-icons": "^6.4.6",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-react-native": "^3.10.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-native": "^0.62.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.3",
"typescript": "^4.0.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.59.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{tsx,ts}": [
"npm run prettier",
"npm run lint"
]
}
}