-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
100 lines (100 loc) · 3.31 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
{
"name": "rlayers",
"version": "0.99.3",
"description": "React Components for OpenLayers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm run build:css",
"build:css": "cd src && find . -name *.css -print | xargs -n1 -I{} cp {} ../dist/{}",
"build:examples": "webpack --mode=production --env production",
"build:doc": "npx styleguidist build",
"dev": "webpack-cli serve --mode=development --env development --open --hot",
"prod": "webpack-cli serve --mode=production --env production --open",
"doc:watch": "npx styleguidist server",
"lint": "eslint './{examples,src}/**/*.{ts,tsx}'",
"lint:fix": "eslint './{examples,src}/**/*.{ts,tsx}' --fix",
"test": "jest",
"test:watch": "jest --watch",
"codecov": "curl -s https://codecov.io/bash | bash",
"preversion": "npm run test",
"version": "npm run build && npm run build:examples && npm run build:doc && git add package.json dist docs",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmomtchev/rlayers.git"
},
"homepage": "https://mmomtchev.github.io/rlayers/",
"keywords": [
"openlayers",
"gis",
"react",
"es6",
"js",
"typescript"
],
"author": "Momtchil Momtchev <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmomtchev/rlayers/issues"
},
"dependencies": {
"@types/ol": "^6.4.2",
"ol": "^6.5.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/webpack": "^4.41.26",
"@types/webpack-dev-server": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"bootstrap": "^4.6.0",
"css-loader": "^5.0.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"glob": "^7.1.6",
"html-webpack-plugin": "^5.0.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"prettier": "^2.2.1",
"proj4": "^2.7.0",
"raw-loader": "^4.0.2",
"react-bootstrap": "^1.4.3",
"react-docgen-typescript": "^1.21.0",
"react-markdown": "^5.0.3",
"react-router-dom": "^5.2.0",
"react-styleguidist": "^11.1.5",
"react-syntax-highlighter": "^15.4.3",
"react-test-renderer": "^17.0.1",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"ts-jest": "^26.5.0",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.1.3",
"webpack": "^5.20.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}