-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.87 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
{
"name": "githubapp-base-ui",
"version": "1.5.4",
"license": "MIT",
"private": true,
"main": "dist/index.web.cjs.js",
"module": "dist/index.web.esm.js",
"browser": "dist/index.web.umd.js",
"react-native": "dist/index.native.cjs.js",
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"build": "rollup -c",
"check-ts": "npx tsc --noEmit",
"test": "concurrently \"yarn test:web\" \"yarn test:native\"",
"test:web": "jest",
"test:native": "jest --config ./jest.native.config.js",
"storybook": "BROWSER=none start-storybook -p 6006",
"build-storybook": "build-storybook",
"clean": "rm -rf node_modules && rm -rf src/*/node_modules"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@react-native-community/eslint-config": "^0.0.5",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/addons": "^6.4.8",
"@storybook/react": "^6.3.12",
"@storybook/theming": "^6.4.8",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react": "^11.2.6",
"@testing-library/react-native": "^7.2.0",
"@types/faker": "^5.5.3",
"@types/jest": "^26.0.23",
"@types/react": "17.0.1",
"@types/react-dom": "17.0.1",
"@types/react-native": "^0.64.0",
"@types/styled-components": "^5.1.9",
"@types/styled-components-react-native": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"concurrently": "^6.0.2",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.22.0",
"faker": "^5.5.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.1",
"react-test-renderer": "^17.0.2",
"rollup": "^2.50.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript": "^1.0.1",
"storybook-addon-themes": "^6.1.0",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"dependencies": {
"@naturacosmeticos/natds-rn": "7.10.0",
"@naturacosmeticos/natds-web": "^4.5.4",
"styled-components": "^5.2.3"
},
"peerDependencies": {
"@naturacosmeticos/natds-rn": "7.10.0",
"@naturacosmeticos/natds-web": "^4.5.4",
"react": "17.0.1",
"react-native": "0.64.1"
},
"resolutions": {
"@naturacosmeticos/natds-icons": "^1.10.2"
}
}