-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "react-mapycz",
"version": "1.1.5",
"description": "Mapy.cz in React.",
"homepage": "http://falsy.cz/react-mapycz/",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepublishOnly": "yarn build",
"start": "webpack serve --mode development",
"build": "rm -rf ./lib && tsc -p tsconfig.build.json",
"build:home": "webpack --mode production",
"predeploy": "yarn build:home",
"deploy": "NODE_DEBUG=gh-pages gh-pages -d home-static"
},
"files": [
"lib",
"src"
],
"keywords": [
"react",
"maps",
"mapycz"
],
"author": "Jakub Kolebaba <[email protected]>",
"license": "MIT",
"dependencies": {
"styled-components": "^5.2.3"
},
"devDependencies": {
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/styled-components": "^5.1.4",
"@types/webpack": "^5.0.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"gh-pages": "^3.0.0",
"html-webpack-plugin": "^5.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-github-btn": "^1.2.0",
"react-syntax-highlighter": "15.2.1",
"ts-loader": "^9.2.6",
"typescript": "5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"peerDependencies": {
"react": ">=16.13.1",
"react-dom": ">=16.13.1"
}
}