-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
63 lines (63 loc) · 2.09 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
{
"name": "digital-fuesim-manv-shared",
"version": "0.7.1",
"type": "module",
"main": "./dist/index.js",
"esnext": "./dist/index.js",
"module": "./dist/index.js",
"es2015": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json --watch",
"lint": "eslint --max-warnings 0 --ignore-path .gitignore \"./**/*.{ts,js,yml,html}\"",
"lint:fix": "eslint --ignore-path .gitignore --fix \"./**/*.{ts,js,yml,html}\"",
"test:ci": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --coverage --verbose --ci",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --coverage --verbose --no-cache",
"test:watch": "jest --runInBand --verbose --watch"
},
"private": true,
"engines": {
"node": ">=18",
"npm": ">=8"
},
"dependencies": {
"@noble/hashes": "^1.2.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"immer": "^9.0.17",
"lodash-es": "^4.17.21",
"rbush": "^3.0.1",
"rbush-knn": "github:mourner/rbush-knn",
"reflect-metadata": "^0.1.13",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/lodash-es": "^4.17.6",
"@types/rbush": "^3.0.0",
"@types/uuid": "^9.0.0",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "~2.27.4",
"eslint-plugin-total-functions": "6.0.0",
"eslint-plugin-unicorn": "^45.0.2",
"jest": "^29.3.1",
"jest-extended": "^3.2.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.9.4"
},
"exports": {
".": {
"node": "./dist/index.js",
"default": "./dist/index.js"
}
}
}