-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.65 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@strapi-community/bigcommerce",
"version": "1.0.0",
"description": "Official Strapi BigCommerce Plugin",
"keywords": [
"strapi",
"bigcommerce",
"plugin",
"custom-field",
"ecommerce"
],
"strapi": {
"kind": "plugin",
"name": "bigcommerce",
"displayName": "BigCommerce",
"description": "Official Strapi BigCommerce Plugin"
},
"license": "MIT",
"author": "Maksymilian Pamuła <mpamula@virtuslab.com>",
"maintainers": [
{
"name": "VirtusLab // Mateusz Ziarko",
"email": "mziarko@virtuslab.com",
"url": "https://virtuslab.com"
}
],
"homepage": "https://github.com/strapi-community/bigcommerce#readme",
"bugs": {
"url": "https://github.com/strapi-community/bigcommerce/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strapi-community/bigcommerce.git"
},
"type": "commonjs",
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"types": "./dist/admin/src/index.d.ts",
"source": "./admin/src/index.ts",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"types": "./dist/server/src/index.d.ts",
"source": "./server/src/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"build": "strapi-plugin build",
"test:ts:back": "run -T tsc -p server/tsconfig.json",
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
"verify": "strapi-plugin verify",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"graphql-codegen": "graphql-codegen",
"lint": "prettier --check .",
"format": "prettier --write .",
"test:server": "jest --forceExit --detectOpenHandles --config server/jest.config.js",
"test:server:watch": "jest --forceExit --detectOpenHandles --config server/jest.config.js --watch",
"test:server:ci": "CI=true jest --ci --runInBand --verbose --coverage --config server/jest.config.js"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn lint && yarn test:server"
}
},
"dependencies": {
"@sensinum/strapi-utils": "^1.0.9",
"@strapi/design-system": "^2.0.0-rc.23",
"@strapi/icons": "^2.0.0-rc.23",
"@tanstack/react-query": "^5.66.0",
"@types/lodash": "^4.17.14",
"fp-ts": "^2.16.9",
"ioredis": "^5.5.0",
"lodash": "^4.17.21",
"lru-cache": "^11.0.2",
"react-intl": "^7.1.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@faker-js/faker": "^9.6.0",
"@strapi/sdk-plugin": "^5.3.0",
"@strapi/strapi": "^5.7.0",
"@strapi/types": "^5.7.0",
"@strapi/typescript-utils": "^5.7.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"husky": "7.0.4",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-styled-components": "^7.1.1",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-query": "3.39.3",
"react-router-dom": "^7.1.1",
"styled-components": "6.1.8",
"ts-jest": "^29.2.6",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@strapi/sdk-plugin": "^5.3.0",
"@strapi/strapi": "^5.7.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
},
"engines": {
"node": ">=18.0.0 <=22.x.x",
"npm": ">=8",
"yarn": ">=1.22.22"
},
"packageManager": "yarn@1.22.22"
}