-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.42 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "native-agreement",
"version": "1.0.1",
"description": "Make sure the user has read the agreement",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepack": "npm run prettier && npm run lint && npm run build",
"clean": "rimraf lib/*",
"build": "tsc",
"prebuild": "npm run clean",
"test": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"lint": "eslint --fix 'src/**/*.{tsx,ts}'",
"prettier": "prettier --write 'src/**/*.{tsx,ts}'",
"commit": "git-cz",
"semantic-release": "semantic-release",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/native-ly/native-agreement.git"
},
"keywords": [
"react",
"android",
"content",
"ios",
"mobile",
"react-native",
"web",
"component",
"read",
"position",
"scroll",
"policy",
"contract",
"confirm",
"agreement",
"expo",
"agree"
],
"bugs": {
"url": "https://github.com/native-ly/native-agreement/issues"
},
"homepage": "https://github.com/native-ly/native-agreement#readme",
"dependencies": {
"native-smart-scroll-container": "^1.0.0"
},
"devDependencies": {
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-native": "^9.0.0",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.37",
"@types/react-native": "^0.66.9",
"@typescript-eslint/parser": "^5.7.0",
"babel-jest": "^27.4.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.3",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-native": "^0.66.4",
"react-test-renderer": "^17.0.2",
"semantic-release": "^18.0.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.59.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{tsx,ts}": [
"npm run prettier",
"npm run lint"
]
}
}