-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "client-web-storage",
"description": "Powerful Web Application Data Storage and State Management Solution.",
"version": "1.7.14",
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"url": "https://github.com/beforesemicolon/client-web-storage",
"type": "git"
},
"keywords": [
"web-storage",
"client-db",
"client-storage",
"indexed-db",
"web-sql",
"local-storage",
"in-memory-storage"
],
"author": "Elson Correia",
"license": "MIT",
"scripts": {
"build": "ts-node scripts/build.ts",
"local": "nodemon --watch src -e ts --exec 'npm run build:local && npm pack'",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/core-js": "^2.5.5",
"@types/jest": "^27.4.1",
"@types/jsdom": "^16.2.14",
"@types/localforage": "0.0.34",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"esbuild": "^0.14.28",
"fake-indexeddb": "^4.0.1",
"jest": "^27.5.1",
"jest-canvas-mock": "^2.3.1",
"jest-environment-jsdom": "^27.5.1",
"nodemon": "^2.0.15",
"react": "*",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"core-js": "^3.27.1",
"localforage": "^1.10.0"
}
}