-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
110 lines (110 loc) · 3.4 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
{
"name": "@magnetis/astro-native",
"version": "1.9.0",
"description": "Astro components for React Native",
"homepage": "https://astro-galaxy.magnetis.com.br/",
"files": [
"dist"
],
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"install:ios": "yarn && npx pod-install ios",
"install:android": "yarn",
"test": "TZ=UTC jest --maxWorkers=50%",
"test:watch": "TZ=UTC jest --watch --verbose --maxWorkers=25%",
"test:coverage": "TZ=UTC jest --ci --coverage --runInBand",
"clean": "rm -rf ./dist",
"lint": "eslint ./src --ext .ts,.tsx",
"prepublishOnly": "yarn clean && tsc --project tsconfig.prod.json && tscpaths -p tsconfig.prod.json -s ./src -o ./dist",
"version": "standard-changelog && git add CHANGELOG.md package.json && git commit -m \"release: bump version to v${npm_package_version}\"",
"storybook": "start-storybook -p 7007",
"start": "yarn react-native start",
"build:ios": "react-native run-ios",
"build:android": "react-native run-android",
"prepare": "npx husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/magnetis/astro-native"
},
"keywords": [
"astro",
"design-system"
],
"author": "Magnetis (https://github.com/magnetis)",
"maintainers": [
"Alysson Lopes <[email protected]>",
"Tobias Ulrich <[email protected]"
],
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@storybook/addon-knobs": "^5.3",
"@storybook/addon-ondevice-knobs": "^5.3.23",
"@storybook/react-native": "^5.3.23",
"@storybook/react-native-server": "^5.3.23",
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react-native": "^8.0.0",
"@types/jest": "^27.0.2",
"@types/node": "^17.0.1",
"@types/react": "^17.0.11",
"@types/react-native": "^0.65.0",
"@types/react-test-renderer": "^18.0.0",
"@types/storybook__react": "^5.2.1",
"@types/styled-components": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-jest": "^25.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"codecov": "^3.8.1",
"commitizen": "^4.2.4",
"concurrently": "^7.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.1",
"jest": "^26.6.3",
"lint-staged": "^12.1.2",
"metro-react-native-babel-preset": "^0.66.2",
"mockdate": "^3.0.2",
"prettier": "2.6.2",
"react": "^16.13.1",
"react-native": "^0.63.3",
"react-test-renderer": "^17.0.1",
"standard-changelog": "^2.0.27",
"tscpaths": "^0.0.9",
"typescript": "^4.0.5"
},
"peerDependencies": {
"react": "^17.0.1",
"react-native": "^0.63.3"
},
"dependencies": {
"@magnetis/astro-galaxy-tokens": "^1.2.3",
"@react-native-community/slider": "^4.1.12",
"react-native-svg": "^12.1.0",
"y18n": "5.0.8"
},
"resolutions": {
"refractor": "^3.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}