-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.11 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
{
"name": "your-design-system",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"storybook:web": "start-storybook",
"storybook:android": "react-native run-android",
"storybook:ios": "react-native run-ios",
"build-storybook": "build-storybook --no-dll",
"figma:webpack:watch": "webpack --config figma.webpack.config.js --watch",
"figma:webpack:hmr": "webpack --config figma.webpack.config.js && webpack serve --config figma.webpack.ui.config.js",
"build:components": "tsc -p lib.tsconfig.json"
},
"dependencies": {
"@bit/joshk.envs.react-native-compiler": "^0.0.3",
"@emotion/core": "^10.1.1",
"@emotion/native": "^10.0.27",
"react": "16.14.0",
"react-dom": "^17.0.1",
"react-figma": "^0.1.16",
"react-native": "0.63.3",
"react-native-svg": "^12.1.0",
"react-native-web": "^0.14.7"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"@storybook/addon-actions": "^5.3",
"@storybook/addon-knobs": "^5.3",
"@storybook/addon-links": "^5.3",
"@storybook/addon-ondevice-actions": "^5.3.23",
"@storybook/addon-ondevice-knobs": "^5.3.23",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^6.0.28",
"@storybook/react-native": "^5.3.23",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.55",
"@types/react-native": "^0.63.32",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"babel-plugin-inline-import": "^3.0.0",
"eslint": "7.11.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "4.0.0",
"html-webpack-plugin": "^4.5.0",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.1.2",
"react-docgen-typescript-loader": "^3.7.2",
"react-figma-webpack-config": "^0.0.7",
"react-scripts": "^4.0.0",
"react-test-renderer": "16.13.1",
"ts-loader": "^8.0.8",
"typescript": "^3.8.3",
"webpack": "4.44.2",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bit": {
"env": {
"compiler": "kungfuyou.envs/compilers/react-native-web@0.0.1"
},
"componentsDefaultDirectory": "components/{name}",
"packageManager": "yarn",
"overrides": {
"utils/*": {
"env": {
"compiler": "-"
}
}
}
}
}