-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "@dashx/browser",
"title": "dashx-browser",
"version": "0.3.1",
"description": "DashX SDK for Browser",
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.es.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.c.jsjs",
"types": "./dist/index.es.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"codegen": "graphql-codegen && eslint --fix ./src/generated",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashxhq/dashx-browser"
},
"keywords": [
"dashx"
],
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.10.4",
"@graphql-typed-document-node/core": "^3.2.0",
"graphql": "^16.8.1",
"uuid-random": "^1.3.2"
},
"devDependencies": {
"@graphql-codegen/add": "^5.0.2",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typed-document-node": "^5.0.7",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"dotenv": "^16.4.5",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.1",
"graphql-codegen-typescript-operation-types": "^2.0.1",
"typescript": "^5.4.5",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.1"
}
}