-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·60 lines (60 loc) · 1.61 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
{
"name": "@openforis/arena-core",
"author": {
"name": "OpenForis",
"email": "[email protected]"
},
"version": "1.0.7",
"description": "Arena core module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.12",
"@types/lodash.differencewith": "^4.5.9",
"@types/lodash.frompairs": "^4.0.9",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.topairs": "^4.3.9",
"@types/proj4": "^2.5.5",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-plugin-no-explicit-type-exports": "^0.12.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "3.3.2",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"dependencies": {
"@jsep-plugin/regex": "^1.0.3",
"bignumber.js": "^9.1.2",
"jsep": "^1.3.8",
"lodash.differencewith": "^4.5.0",
"lodash.frompairs": "^4.0.1",
"lodash.isequal": "^4.5.0",
"lodash.topairs": "^4.3.0",
"moment": "^2.30.1",
"proj4": "^2.11.0",
"uuid": "^10.0.0"
},
"scripts": {
"build:watch": "tsc --watch",
"build": "tsc",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"prepare": "yarn build && husky install",
"test": "jest"
},
"files": [
"dist/**/*"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"**/*.{js,ts,json,css,md}": "prettier --write"
}
}