-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·81 lines (81 loc) · 2.23 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
{
"name": "@b2bstore/boilerplate-adapter",
"type": "module",
"version": "0.0.0",
"author": "Orienteed SLU",
"description": "Boilerplate adapter for B2BStore",
"homepage": "https://b2bstore.io",
"license": "OSL-3.0",
"scripts": {
"dev": "vite",
"clean": "rimraf dist node_modules tsconfig.tsbuildinfo",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@apollo/client": "^3.7.4",
"graphql": "^16.6.0",
"react": "^18.2.0"
},
"peerDependencies": {
"@apollo/client": "^3.7.4",
"graphql": "^16.6.0",
"react": "^18.2.0"
},
"output": {
"globals": {
"@apollo/client": "ApolloClient",
"graphql": "GraphQL",
"react": "React"
}
},
"devDependencies": {
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-simple-import-sort": "^9.0.0",
"husky": "^8.0.3",
"prettier": "^2.8.3",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite-plugin-dts": "^1.7.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orienteed/b2bstore-boilerplate-adapter.git"
},
"bugs": {
"url": "https://github.com/orienteed/b2bstore-boilerplate-adapter/issues"
},
"keywords": [
"adapter",
"api",
"b2bstore",
"boilerplate"
],
"main": "./dist/b2bstore-boilerplate-adapter.umd.cjs",
"module": "./dist/b2bstore-boilerplate-adapter.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/b2bstore-boilerplate-adapter.js",
"require": "./dist/b2bstore-boilerplate-adapter.umd.cjs"
}
},
"files": [
"dist"
]
}