-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
103 lines (103 loc) · 3.53 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
{
"name": "pigeon-maps",
"version": "0.21.5",
"description": "ReactJS maps without external dependencies",
"author": "Marius Andra",
"license": "MIT",
"types": "lib/index.d.ts",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mariusandra/pigeon-maps.git"
},
"bugs": {
"url": "https://github.com/mariusandra/pigeon-maps/issues"
},
"homepage": "https://github.com/mariusandra/pigeon-maps#readme",
"scripts": {
"start": "webpack-dev-server --history-api-fallback --hot --host 0.0.0.0 --port 4040",
"build": "rimraf lib && rollup -c && rimraf lib/demo && mv lib/src/* lib/ && rimraf lib/src",
"prepublishOnly": "yarn build",
"prepare": "npm run build",
"prettier": "prettier --write \"src/**/*.tsx\" \"demo/**/*.tsx\" ",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib",
"src",
"LICENSE.md",
"README.md",
"providers"
],
"dependencies": {},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/plugin-proposal-do-expressions": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@babel/plugin-proposal-function-bind": "^7.16.7",
"@babel/plugin-proposal-function-sent": "^7.16.7",
"@babel/plugin-proposal-json-strings": "^7.16.7",
"@babel/plugin-proposal-logical-assignment-operators": "^7.16.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
"@babel/plugin-proposal-numeric-separator": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-proposal-pipeline-operator": "^7.16.7",
"@babel/plugin-proposal-throw-expressions": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/react": "17.0.38",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-babel-env-inline": "^0.0.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-standard": "4.0.1",
"file-loader": "^6.0.0",
"husky": "^4",
"lint-staged": ">=10.5.1",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.66.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-typescript2": "^0.31.1",
"tslib": "^2.0.1",
"typescript": "^4.2.3",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,scss}": "prettier --write"
}
}