-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.77 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
57
58
59
60
{
"name": "react-native-basic-modal",
"version": "1.0.2",
"description": "Basic & Elegant UI Modal for React Native",
"homepage": "https://www.freakycoder.com",
"bugs": "https://github.com/WrathChaos/react-native-basic-modal/issues",
"main": "./build/dist/index.js",
"repository": "git@github.com:WrathChaos/react-native-basic-modal.git",
"author": "Kuray (FreakyCoder) <kurayogun@gmail.com>",
"license": "MIT",
"keywords": [
"pop-up",
"popup",
"alert",
"modal",
"basic",
"ui",
"front-end",
"elegant",
"FreakyCoder",
"freakycoder",
"kuray",
"Kuray",
"react",
"react-native",
"javascript",
"ui-lib",
"rn"
],
"dependencies": {
"react-native-modal": ">= 11.4.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@react-native-community/eslint-config": "^3.2.0",
"@types/react": "^18.0.26",
"@types/react-native": "^0.73.0",
"cpx": "^1.5.0",
"eslint": "^9.2.0",
"eslint-config-airbnb": "^19.0.4",
"husky": "^9.0.11",
"lint-staged": "^15.0.2",
"npm-post-install": "0.0.2",
"prettier": "^3.0.0",
"prettier-format": "^4.0.0",
"react-native-typescript-transformer": "^1.2.13",
"semantic-release": "^24.1.1",
"typescript": "^5.0.2"
},
"scripts": {
"build": "cd lib && tsc && npm run copy:assets && npm run copy:package",
"prepare": "husky install",
"husky:setup": "npx husky-init && npm run husky:commitlint",
"husky:commitlint": "npx husky add .husky/commit-msg 'npx --no-install commitlint --edit'",
"semantic-release": "semantic-release",
"copy:assets": "cpx 'lib/local-assets/**' './build/dist/local-assets'",
"copy:package": "cpx '../package.json' '../build/dist/'"
}
}