-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2 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
{
"main": "main/index.js",
"dependencies": {
"@supabase/supabase-js": "^1.29.1",
"app-root-path": "^3.0.0",
"electron-is-dev": "^2.0.0",
"electron-next": "^3.1.5",
"expo": "^43.0.0",
"husky": "^7.0.4",
"next": "^10.0.0",
"next-compose-plugins": "^2.2.1",
"next-fonts": "^1.5.1",
"next-images": "^1.8.4",
"next-transpile-modules": "^9.0.0",
"ramda": "^0.27.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-web": "0.17.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/preset-typescript": "^7.16.0",
"@expo/next-adapter": "~2.1.52",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"@testing-library/user-event": "13.2.1",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.37",
"@types/react-native": "^0.66.8",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-jest": "27.0.6",
"electron": "^16.0.4",
"eslint": "^8.4.0",
"eslint-config-next": "latest",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-testing-library": "4.11.0",
"jest": "27.3.1",
"prettier": "^2.5.1",
"react-test-renderer": "17.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"test": "jest --watch",
"test:ci": "jest --ci",
"start": "next dev",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"build": "next build",
"start:electron": "electron ."
},
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn build && yarn test:ci"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}