-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2 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
{
"name": "@valkyr/db",
"version": "0.0.0",
"description": "Simple client side storage solution written in TypeScript.",
"repository": "https://github.com/valkyrjs/db.git",
"bugs": "https://github.com/valkyrjs/db/issues",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"browser",
"database",
"mingo",
"mongodb"
],
"scripts": {
"build": "tsc -b ./tsconfig.build.json",
"flush": "npm run clean && rm -rf ./node_modules",
"clean": "rm -rf ./dist",
"lint": "eslint ./src --fix",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"dependencies": {
"dot-prop": "8.0.2",
"fast-equals": "5.0.1",
"idb": "7.1.1",
"mingo": "6.4.6",
"nanoid": "5.0.2",
"rfdc": "1.3.0",
"rxjs": "7.8.1"
},
"devDependencies": {
"@types/jest": "29.5.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"bson": "6.2.0",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-anti-trojan-source": "1.1.1",
"eslint-plugin-check-file": "2.6.2",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"fake-indexeddb": "5.0.0",
"jest": "29.7.0",
"lint-staged": "15.0.2",
"prettier": "3.0.3",
"ts-jest": "29.1.1",
"type-fest": "4.5.0",
"typescript": "5.2.2"
},
"prettier": {
"printWidth": 120,
"trailingComma": "none"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"verbose": true,
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/dist"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"testRegex": ".*\\.Test\\.ts$",
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"useESM": true
}
]
}
}
}