generated from Aetherspace/green-stack-starter-demo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 5.59 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "aetherspace-green-stack-starter",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"author": "codinsonn <[email protected]>",
"repository": "https://github.com/codinsonn/aetherspace-green-stack-starter",
"description": "Starter monorepo to get started with the GREEN stack for all your cross platform app development needs. Comes standard with GraphQL, React-Native(-Web), Expo & Next.js + A bunch of optional helpers to make these all work together smoothlessly.",
"workspaces": [
"apps/*",
"features/*",
"packages/*"
],
"engines": {
"node": ">=18.17.x <19.0.0"
},
"browser": {
"fs": false,
"os": false,
"path": false
},
"devDependencies": {
"@a110/storybook-expand-all": "^1.1.1",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@expo/webpack-config": "^0.17.2",
"@react-native-community/eslint-config": "^3.2.0",
"@storybook/addon-controls": "^6.5.16",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/mdx2-csf": "^0.0.4",
"@storybook/react": "^6.5.16",
"@turbo/gen": "^1.10.7",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"chromatic": "^6.17.1",
"eslint": "^8.52.0",
"eslint-config-next": "^13.5.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-react-native-a11y": "^3.3.0",
"patch-package": "^8.0.0",
"prettier": "^3.0.3",
"prettier-eslint": "^16.1.2",
"react-docgen-typescript-plugin": "^1.0.5",
"turbo": "^1.10.7",
"webpack": "*",
"webpack-merge": "^5.9.0"
},
"resolutions": {
"@babel/code-frame": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/generator": "^7.22.5",
"@babel/parser": "^7.22.6",
"@babel/plugin-proposal-decorators": "^7.22.5",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/plugin-transform-typescript": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-flow": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime": "^7.22.5",
"@babel/traverse": "~7.22.6",
"@babel/types": "^7.22.5",
"@babel/compat-data": "^7.22.5",
"@babel/helpers": "^7.22.5",
"@babel/helper-replace-supers": "^7.22.5",
"@babel/helper-function-name": "^7.22.5",
"@babel/helper-member-expression-to-functions": "^7.22.5",
"@babel/helper-create-class-features-plugin": "^7.22.5",
"@babel/helper-compilation-targets": "^7.22.5",
"@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5",
"@babel/helper-environment-visitor": "^7.22.5",
"@babel/helper-create-regexp-features-plugin": "^7.22.5",
"@babel/helper-module-transforms": "^7.22.5",
"@babel/helper-remap-async-to-generator": "^7.22.5",
"@babel/helper-validator-identifier": "^7.22.5",
"@babel/plugin-transform-optional-chaining": "^7.22.5",
"@babel/plugin-transform-destructuring": "^7.22.5",
"@expo/config": "^7.0.2",
"@types/react": "18.2.34",
"@expo/webpack-config": "^0.17.2",
"expo-constants": "^14.4.2",
"graphql": "16.7.1",
"typescript": "^5.2.2",
"zod": "~3.20.6"
},
"scripts": {
"dev": "yarn turbo run next-app#dev expo-app#start",
"dev:mobile": "yarn turbo run next-app#dev expo-app#ios & yarn storybook:wait",
"dev:docs": "yarn dev & yarn storybook:wait",
"web": "yarn turbo run next-app#dev",
"ios": "yarn turbo run next-app#dev expo-app#ios",
"android": "yarn turbo run next-app#dev expo-app#android",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006",
"storybook:wait": "yarn turbo run aetherspace#dev-health-check && yarn storybook",
"expo-cli": "yarn workspace expo-app expo-cli",
"eas-cli": "yarn workspace expo-app eas-cli",
"check-workspaces": "yarn turbo run aetherspace#check-workspaces",
"link-routes": "yarn turbo run aetherspace#link-routes",
"collect-assets": "yarn turbo run aetherspace#collect-assets",
"collect-icons": "yarn turbo run aetherspace#collect-icons",
"collect-resolvers": "yarn turbo run aetherspace#collect-resolvers",
"collect-generators": "yarn turbo run aetherspace#collect-generators",
"document-components": "yarn turbo run aetherspace#document-components",
"lint": "turbo run lint",
"gen": "turbo gen",
"ats": "yarn workspace aetherspace run",
"aetherspace": "yarn workspace aetherspace run",
"build": "yarn workspace expo-app create-next-manifest && yarn turbo run aetherspace#collect-assets build",
"build-storybook": "NODE_OPTIONS=--openssl-legacy-provider build-storybook",
"deploy:web:vercel": "vercel --prod --no-clipboard",
"deploy:mobile:publish": "yarn workspace expo-app run deploy:publish",
"deploy:mobile:auto": "yarn workspace expo-app run deploy:update:auto",
"deploy:mobile:dev": "yarn workspace expo-app run deploy:update:dev",
"deploy:mobile:stage": "yarn workspace expo-app run deploy:update:stage",
"deploy:mobile:prod": "yarn workspace expo-app run deploy:update:prod",
"postinstall": "patch-package"
}
}