-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "wtg",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier . --write",
"format": "npm run lint:fix && npm run prettier",
"test": "jest",
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"expo": "~52.0.17",
"expo-dev-client": "~5.0.5",
"expo-status-bar": "~2.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.3",
"react-native-safe-area-context": "4.12.0",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@testing-library/react-native": "^12.8.1",
"@tsconfig/react-native": "^3.0.5",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/styled-components-react-native": "^5.2.5",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.57.1",
"eslint-config-universe": "^14.0.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-react-native-a11y": "^3.5.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-expo": "~52.0.2",
"jest-styled-components": "^7.2.0",
"prettier": "^3.4.2",
"react-test-renderer": "^18.3.1",
"typescript": "^5.6.3"
},
"private": true
}