-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
43 lines (43 loc) · 1.27 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
{
"name": "react-native-example",
"version": "1.0.0",
"private": true,
"description": "react-form-with-constraints React Native example",
"keywords": [
"react",
"form",
"validation",
"react-form-with-constraints",
"react-native"
],
"main": "index.js",
"scripts": {
"clean:all": "rm -rf package-lock.json node_modules .expo ios android",
"tsc": "tsc",
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"test": "jest --verbose --detectOpenHandles"
},
"dependencies": {
"expo": "^45.0.6",
"lodash-es": "^4.17.21",
"react": "17.0.2",
"react-form-with-constraints": "../../packages/react-form-with-constraints",
"react-form-with-constraints-native": "../../packages/react-form-with-constraints-native",
"react-form-with-constraints-tools": "../../packages/react-form-with-constraints-tools",
"react-native": "0.68.2"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@types/jest": "^28.1.6",
"@types/lodash-es": "^4.17.6",
"@types/react-native": "^0.69.3",
"@types/react-test-renderer": "^18.0.0",
"expo-cli": "^5.5.1",
"jest": "^27.5.1",
"jest-expo": "^45.0.1",
"react-test-renderer": "17.0.2",
"typescript": "^4.7.4"
}
}