-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
164 lines (164 loc) · 4.98 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
{
"name": "@headstorm/foundry-native-ui",
"version": "0.0.1",
"description": "Robust UI library written in React. It's DRY, with CSS in JS; stirred, not shaken.",
"author": "Headstorm LLC",
"homepage": "http://foundryui.com",
"repository": {
"type": "git",
"url": "https://github.com/Headstorm/foundry-native-ui.git"
},
"bugs": {
"url": "https://github.com/Headstorm/foundry-native-ui/issues"
},
"license": "Apache-2.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --watchAll",
"storybook": "start-storybook -p 7007",
"build-storybook": "build-storybook",
"lint": "eslint src/**/*.tsx src/**/*.ts --ignore-pattern *.css --fix",
"lint-ci": "yarn run prettier:write && eslint src/**/*.tsx src/**/*.ts --ignore-pattern *.css --quiet",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "yarn run prettier:base --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "yarn run prettier:base --write \"src/**/*.{ts,tsx}\"",
"clean": "rm -rf ./dist/*",
"webpack": "webpack --config webpack.config.js",
"dts": "tsc --declaration --outDir dist/types/ --emitDeclarationOnly --declarationMap --allowJs false --checkJs false",
"pre-push": "yarn run lint-ci && yarn run clean && yarn run webpack && yarn run dts",
"semver-dryrun": "npx semantic-release -d --debug",
"semver-release": "npx semantic-release",
"commit": "npx git-cz"
},
"husky": {
"hooks": {
"pre-push": "yarn run pre-push",
"pre-commit": "yarn run lint"
}
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/git",
[
"@semantic-release/npm",
{
"npmPublish": true
}
]
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"master",
{
"name": "v1-release",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
},
{
"name": "next",
"prerelease": true
}
],
"prepare": [
"@semantic-release/changelog",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"CHANGELOG.md",
"coverage"
],
"message": "chore(release): ${nextRelease.version} [skip ci]nn${nextRelease.notes}"
}
]
},
"pre-commit": [
"lint-ci"
],
"eslintConfig": {
"extends": "@react-native-community"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "^12.0.0",
"@mdi/js": "^5.9.55",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "5.11.2",
"@react-navigation/native": "~5.8.10",
"@react-navigation/stack": "~5.12.8",
"expo": "~41.0.1",
"expo-asset": "~8.3.1",
"expo-constants": "~10.1.3",
"expo-font": "~9.1.0",
"expo-linking": "~2.2.3",
"expo-splash-screen": "~0.10.2",
"expo-status-bar": "~1.0.4",
"expo-web-browser": "~9.1.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-41.0.0.tar.gz",
"react-native-gesture-handler": "~1.10.2",
"react-native-reanimated": "~2.1.0",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "~3.0.0",
"react-native-svg": "^12.1.1",
"react-native-web": "~0.13.12",
"react-spring": "^9.2.3"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@react-native-community/eslint-config": "^3.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.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.25",
"@storybook/react-native": "^5.3.25",
"@storybook/react-native-server": "^5.3.23",
"@testing-library/react": "^12.0.0",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@types/styled-components": "^5.1.10",
"@types/styled-components-react-native": "^5.1.1",
"@typescript-eslint/parser": "^4.28.3",
"babel-loader": "^8.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"jest-expo": "~41.0.0",
"react-spring": "^9.2.4",
"semantic-release": "^17.4.4",
"styled-components": "^5.3.0",
"typescript": "~4.0.0"
},
"peerDependencies": {
"styled-components": "^5.3.0"
}
}