-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "@openreplyde/query-cache",
"version": "1.0.0-alpha.1",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"dev:app": "vite --host",
"build": "tsc && vite build",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationMap --project ./tsconfig.lib.json",
"preview": "vite preview",
"lint": "eslint --ext .js,.ts",
"test:unit": "vitest",
"dev:server": "ts-node-esm src/test-server/index.ts"
},
"devDependencies": {
"@testing-library/dom": "^8.17.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"cors": "^2.8.5",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"express": "^4.18.1",
"happy-dom": "^7.6.0",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vitest": "^0.23.2"
}
}