-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.15 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": "@fractal-software/monorepo",
"version": "2.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --parallel --continue",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "jest",
"clean": "npm run clean:turbo && npm run clean:watchman",
"clean:turbo": "npm run turbo run clean && rm -rf node_modules",
"clean:watchman": "watchman watch-del-all && npm cache verify",
"web:expo": "cd apps/fractal-ui-expo-example && npm run web",
"web:react": "cd apps/fractal-ui-react-js-example && npm run start",
"web:next": "cd apps/fractal-ui-next-js-example && npm run dev",
"web:vite": "cd apps/fractal-ui-vite-example && npm run dev",
"native": "cd apps/fractal-ui-expo-example && npm run start",
"turbo": "turbo",
"pub": "turbo run pub"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.17",
"@types/react-native": "^0.69.5",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-universe": "^11.1.0",
"eslint-plugin-jest": "^27.2.1",
"expo-module-scripts": "^2.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"patch-package": "^6.5.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.5",
"turbo": "^1.8.2",
"typescript": "^4.7.4"
},
"resolutions": {
"@react-native-community/slider": "4.4.2",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.10",
"react": "18.2.0",
"react-native": "0.71.4",
"expo-device": "~5.2.1",
"react-native-gesture-handler": "~2.9.0",
"react-native-svg": "13.4.0",
"framer-motion": "^6.5.1",
"typescript": "^4.7.4"
},
"eslintConfig": {
"extends": "universe/native"
}
}