-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.01 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
{
"name": "molecules-monorepo",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/webbeetechnologies/react-native-molecules.git"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"packageManager": "pnpm@9.3.0",
"scripts": {
"lint": "eslint .",
"type-check": "tsc --noEmit -p packages/molecules/tsconfig.json && tsc --noEmit -p docs/tsconfig.json",
"prepare:husky": "husky install",
"docs-site": "pnpm --filter=molecules-docs run",
"example:app": "pnpm --filter=expo-example-molecules run",
"example:web": "pnpm --filter=next-example-molecules run"
},
"devDependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@chromatic-com/storybook": "^3",
"@react-native-community/eslint-config": "^3.1.0",
"@testing-library/jest-native": "^5.1.2",
"@testing-library/react-native": "^11.2.0",
"@types/react": "~19.1.10",
"@types/react-dom": "19.1.5",
"@types/uuid": "^8.3.4",
"babel-plugin-module-resolver": "^5.0.2",
"chromatic": "^6.15.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^8.0.1",
"jest": "~29.7.0",
"jest-environment-node": "27",
"jest-transform-stub": "^2.0.0",
"prettier": "^2.7.1",
"react-docgen-typescript-plugin": "^1.0.8",
"react-test-renderer": "^19.1.0",
"reassure": "^0.7.1",
"ts-jest": "^29.0.3",
"ts-morph": "^27.0.2",
"tsx": "^4.20.6",
"typescript": "^5.3.3"
},
"resolutions": {
"@types/react": "~19.1.10",
"@types/react-dom": "19.1.5",
"react-native-unistyles": "3.2.4"
},
"eslintIgnore": [
"node_modules/",
"lib/",
"test-cases/node_modules",
"dist",
"cache"
]
}