forked from chrisdrackett/react-mapkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.91 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
{
"name": "react-mapkit",
"version": "0.6.6",
"description": "React wrapper for Apple's mapkit.js.",
"license": "MIT",
"author": "Chris Drackett",
"homepage": "https://github.com/chrisdrackett/react-mapkit",
"repository": {
"type": "git",
"url": "https://github.com/chrisdrackett/react-mapkit"
},
"bugs": {
"url": "https://github.com/chrisdrackett/react-mapkit/issues"
},
"keywords": [
"react-component",
"maps",
"mapkit",
"apple"
],
"main": "dist/index.js",
"umd:main": "dist/mapkit.umd.production.js",
"module": "dist/mapkit.es.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"react": ">= 16.8.x",
"react-dom": ">= 16.8.x"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx}": [
"prettier --write",
"git add"
],
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.0",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-info": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addon-storysource": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@storybook/storybook-deployer": "^2.8.10",
"@types/jest": "^24.0.15",
"@types/little-loader": "^0.2.0",
"@types/react": "^16.9.26",
"@types/react-dom": "^16.9.5",
"@types/storybook__addon-knobs": "^5.0.1",
"@types/storybook__react": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"colors": "^1.4.0",
"concurrently": "^5.1.0",
"cross-spawn": "^7.0.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^3.10.4",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^7.0.4",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^12.0.2",
"prettier": "^2.4.1",
"prompt": "^1.0.0",
"react": "^16.8.6",
"react-docgen-typescript-loader": "^3.1.0",
"react-dom": "^16.8.6",
"tsdx": "^0.14.1",
"tslib": "^1.11.1",
"typescript": "^4.5.2"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"example": "cd example && yarn start",
"package": "tsdx watch",
"start": "concurrently \"yarn:package\" \"yarn:example\"",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"build-storybook": "build-storybook",
"deploy": "./scripts/deploy.js"
}
}