-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 2.88 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
{
"name": "neopop-react-native",
"version": "0.1.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"exports": {
".": {
"node": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
},
"./components": {
"node": "./dist/components/index.js",
"require": "./dist/components/index.js",
"default": "./dist/components/index.mjs"
},
"./primitives": {
"node": "./dist/primitives/index.js",
"require": "./dist/primitives/index.js",
"default": "./dist/primitives/index.mjs"
},
"./utils": {
"node": "./dist/utils/index.js",
"require": "./dist/utils/index.js",
"default": "./dist/utils/index.mjs"
}
},
"license": "MIT",
"peerDependencies": {
"react": "^17.0.2 || ^18.0.0",
"react-native": ">=0.68.2",
"react-native-svg": "^12.3.0",
"react-native-web": "^0.18.6"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/addon-viewport": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^17.0.47",
"@types/react-native": "^0.68.2",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"babel-loader": "^8.2.5",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.0",
"prettier": "^2.7.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "^0.68.2",
"react-native-svg": "^12.3.0",
"react-native-web": "^0.18.6",
"require-from-string": "^2.0.2",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"webpack": "^5.73.0"
},
"resolutions": {
"@types/react": "^17.0.47"
},
"scripts": {
"build": "tsup",
"format": "prettier --write src/**/*.{ts,tsx}",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --quiet --fix",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook"
}
}