-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
189 lines (189 loc) · 6.63 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
{
"private": true,
"name": "atlantis",
"version": "0.0.1",
"license": "MIT",
"workspaces": [
"packages/formatters",
"packages/design",
"packages/hooks",
"packages/components",
"packages/components-native",
"packages/docx",
"packages/eslint-config",
"packages/generators",
"packages/stylelint-config",
"packages/site"
],
"scripts": {
"build": "npm run storybook:build && cd packages/site && npm run build && mv ../../storybook-static dist/storybook && mv dist ../../storybook-static",
"build:hooksIndex": "node scripts/createIndexFile.js ./packages/hooks/src",
"bootstrap": "npm run bootstrap --workspaces --if-present",
"ci:release": "lerna publish --yes",
"clean": "rm -rf node_modules **/dist packages/**/.rollup.cache storybook-static",
"generate": "plop -- --path='./packages/components/src/'",
"lint": "npm run lint:js && npm run lint:css",
"lerna:clean": "lerna run clean && lerna clean --y && npm run clean",
"lint:css": "stylelint 'packages/**/*.css' --allow-empty-input --ignore-pattern 'packages/**/dist/**/*.css'",
"lint:fix": "npm run lint:js -- --fix && npm run lint:css -- --fix && npm run lint:markdown -- --write",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx,.mjs,.cjs . --report-unused-disable-directives",
"lint:markdown": "prettier --check '**/*.{md,mdx}' --write",
"pack": "npm run bootstrap && npm pack -w",
"postinstall": "npm run bootstrap",
"prestart": "npm run build:hooksIndex",
"preventManualRelease": "node scripts/preventManualRelease.js",
"publish:prerelease": "lerna publish --canary --dist-tag next --preid pre",
"publish:prerelease:force": "npm run publish:prerelease -- --force-publish",
"publish:prerelease:githubAction": "lerna publish --canary --summary-file --dist-tag next",
"release-the-kraken": "npm ci && lerna publish",
"release:unpublished-package": "npm ci && lerna publish from-package",
"start": "npm run storybook",
"storybook": "export NODE_OPTIONS=--openssl-legacy-provider && storybook dev -p 6005",
"storybook:build": "export NODE_OPTIONS=--openssl-legacy-provider && storybook build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GetJobber/atlantis.git"
},
"author": "The Frends",
"bugs": {
"url": "https://github.com/GetJobber/atlantis/issues"
},
"homepage": "https://github.com/GetJobber/atlantis#readme",
"devDependencies": {
"@apollo/client": "^3.7.10",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-syntax-import-attributes": "^7.24.7",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@codesandbox/sandpack-react": "^1.20.9",
"@csstools/postcss-global-data": "^1.0.3",
"@jobber/components": "*",
"@jobber/components-native": "*",
"@jobber/design": "*",
"@jobber/docx": "*",
"@jobber/eslint-config": "*",
"@jobber/generators": "*",
"@jobber/stylelint-config": "*",
"@react-native-community/datetimepicker": "^7.1.0",
"@storybook/addon-actions": "^7.6.20",
"@storybook/addon-designs": "7.0.9",
"@storybook/addon-docs": "^7.6.20",
"@storybook/addon-essentials": "^7.6.20",
"@storybook/addon-interactions": "^7.6.20",
"@storybook/addon-links": "^7.6.20",
"@storybook/addon-mdx-gfm": "^7.6.20",
"@storybook/addon-react-native-web": "^0.0.21",
"@storybook/addons": "^7.6.20",
"@storybook/manager-api": "^7.6.20",
"@storybook/react": "^7.6.20",
"@storybook/react-native": "^7.6.20",
"@storybook/react-webpack5": "^7.6.20",
"@storybook/source-loader": "^7.6.20",
"@storybook/testing-library": "0.2.2",
"@storybook/theming": "^7.6.20",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^14.5.1",
"@types/history": "^4.7.6",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.149",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^18.0.0",
"autoprefixer": "^9.8.4",
"axios": "^1.6.0",
"babel-loader": "^8.3.0",
"babel-plugin-react-native-web": "^0.19.4",
"babel-plugin-transform-import-meta": "^2.2.1",
"chalk": "^4.1.2",
"css-loader": "^3.4.2",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"eslint": "^8.36.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-mdx": "^1.16.0",
"eslint-plugin-monorepo-cop": "^1.0.2",
"eslint-plugin-react": "^7.33.2",
"glob": "^7.1.4",
"graphql": "^15.8.0",
"graphql-ws": "^5.12.0",
"husky": "^2.4.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-junit": "^15.0.0",
"lerna": "^6.5.1",
"lint-staged": "^9.4.2",
"lodash": "^4.17.21",
"metro-react-native-babel-preset": "^0.76.0",
"plop": "^4.0.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^4.2.0",
"postcss-preset-env": "^8.3.0",
"prettier": "^2.4.1",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-ga4": "^2.1.0",
"react-intl": "^6.4.2",
"react-native": "0.73.9",
"react-native-gesture-handler": "^2.10.2",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-modal-datetime-picker": "^15.0.1",
"react-native-modalize": "^2.0.13",
"react-native-portalize": "^1.0.7",
"react-native-reanimated": "^3.7.1",
"react-native-safe-area-context": "^4.5.2",
"react-native-svg": "^15.1.0",
"react-native-web": "^0.18.12",
"react-router-dom": "^5.3.4",
"react-test-renderer": "^18.2.0",
"storybook": "^7.6.20",
"style-loader": "^0.23.1",
"stylelint": "^16.2.1",
"stylelint-junit-formatter": "^0.2.1",
"subscriptions-transport-ws": "^0.11.0",
"ts-dedent": "^2.2.0",
"ts-node": "^10.9.1",
"typed-css-modules": "^0.7.0",
"typed-css-modules-loader": "0.0.18",
"typescript": "^5.6.3",
"webpack": "^5.65.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR",
"iOS 9",
"ie >= 11"
],
"dependencies": {
"@storybook/blocks": "^7.6.20",
"@storybook/components": "^7.6.20",
"jest-environment-jsdom": "^29.5.0"
},
"engines": {
"node": "22",
"npm": "10"
},
"overrides": {
"lerna": {
"semver": "^5.7.2 || ^6.3.1 || ^7.5.2",
"make-dir": {
"semver": "^6.3.1"
}
},
"trim": "0.0.3"
},
"engineStrict": true
}