-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.85 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.85 KB
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
{
"name": "@gisatcz/ptr-utils",
"version": "1.6.0",
"description": "Panther FE utils package",
"sideEffects": false,
"keywords": [
"panther",
"gisat"
],
"homepage": "https://github.com/gisat-panther/ptr-utils",
"prettier": "@gisatcz/prettier-config",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"main": "dist/index.js",
"module": "lib/index.js",
"files": [
"dist",
"lib"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/gisat-panther/ptr-utils"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.2 || ^18.1.0",
"react-dom": "^16.13.1 || ^17.0.2 || ^18.1.0"
},
"dependencies": {
"@gisatcz/ptr-core": "^1.7.0",
"@turf/bbox": "^6.5.0",
"@turf/center": "^6.5.0",
"chroma-js": "^2.1.2",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"re-reselect": "^4.0.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.15.3",
"@gisatcz/prettier-config": "^0.0.3",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^22.0.0",
"auto": "^10.16.5",
"babel-loader": "^8.2.3",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"husky": "^4.3.8",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.11.0",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.58.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-node-externals": "^4.0.0",
"rollup-plugin-visualizer": "^5.5.2",
"set-tz": "^0.2.0"
},
"scripts": {
"clean": "rimraf dist",
"start": "cross-env BABEL_ENV=development run-s clean && run-p start:es start:cjs start:lib:es",
"start:lib:es": "cross-env BABEL_ENV=development babel --watch src -d lib --verbose",
"start:cjs": "cross-env BABEL_ENV=development NODE_ENV=cjs rollup -c -w",
"start:es": "cross-env BABEL_ENV=development NODE_ENV=es rollup -c -w",
"build": "cross-env BABEL_ENV=production run-s clean && run-p build:es build:cjs build:lib:es",
"build:es": "cross-env BABEL_ENV=production NODE_ENV=es rollup -c",
"build:cjs": "cross-env BABEL_ENV=production NODE_ENV=cjs rollup -c",
"build:lib:es": "cross-env BABEL_ENV=production babel src -d lib",
"test": "mocha",
"test:watch": "mocha --watch",
"coverage": "cross-env NODE_ENV=test nyc --reporter=html --reporter=json npm run test",
"format": "prettier --write .",
"lint": "eslint .",
"lintFix": "eslint . --fix"
}
}