-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
110 lines (110 loc) · 2.87 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
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
{
"name": "strapi-plugin-zeasy-image-api",
"version": "1.2.1",
"description": "Allow you to search and import image from Unsplash to the rich text field.",
"files": [
"admin",
"config",
"controllers",
"services",
"models",
"utils"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"eslint *.js --fix-dry-run"
]
},
"strapi": {
"name": "Image Api",
"icon": "plug",
"description": "Allow you to search and import image from Unsplash to the rich text field."
},
"scripts": {
"prepublish": "yarn build",
"start": "webpack --watch",
"clean": "rimraf admin/src/components/ImageApi",
"build": "yarn clean && cross-env NODE_ENV=production webpack --mode=production",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --config .prettierrc \"**/*.{js,html,md}\" --write"
},
"author": {
"name": "Kwinten",
"email": "kwinten.yc.li@gmail.com",
"url": "https://github.com/kwinyyyc"
},
"maintainers": [
{
"name": "Kwinten",
"email": "kwinten.yc.li@gmail.com",
"url": "https://github.com/kwinyyyc"
}
],
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-react": "^7.10.1",
"@buffetjs/core": "^3.1.1",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"eslint": "^7.2.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"file-loader": "^6.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"strapi-helper-plugin": "^3.0.0",
"styled-components": "^5.1.1",
"svg-loader": "^0.0.2",
"url-loader": "^4.1.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@babel/preset-env": "^7.12.1",
"axios": "^0.21.1",
"file-type": "^14.6.1",
"uuid": "^8.1.0"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"strapi-helper-plugin": "^3.0.0",
"styled-components": "^5.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kwinyyyc/strapi-plugin-zeasy-image-api.git"
},
"keywords": [
"strapi",
"plugins",
"unsplash",
"image"
],
"bugs": {
"url": "https://github.com/kwinyyyc/strapi-plugin-zeasy-image-api/issues"
},
"homepage": "https://github.com/kwinyyyc/strapi-plugin-zeasy-image-api#readme"
}