generated from payloadcms/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "@nouance/payload-better-fields-plugin",
"version": "1.4.1",
"homepage:": "https://github.com/NouanceLabs/payload-better-fields-plugin",
"repository": "[email protected]:NouanceLabs/payload-better-fields-plugin.git",
"description": "A Payload plugin that aims to provide improved fields for the admin panel",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"payload",
"cms",
"plugin",
"typescript",
"react",
"template"
],
"scripts": {
"build": "tsc && cp -r ./src/styles ./dist/styles",
"test": "cd dev && yarn test",
"lint": "eslint src",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"clean": "rimraf dist && rimraf dev/yarn.lock"
},
"author": "[email protected]",
"license": "MIT",
"peerDependencies": {
"payload": "^2.0.0"
},
"devDependencies": {
"@payloadcms/eslint-config": "^0.0.2",
"@swc/jest": "^0.2.29",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"payload": "^2.11.2",
"prettier": "^2.8.8",
"react": "^18.2.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0"
},
"dependencies": {
"colord": "^2.9.3",
"date-fns-tz": "^2.0.1",
"react-colorful": "^5.6.1",
"react-number-format": "^5.3.1",
"react-phone-number-input": "^3.3.7",
"slugify": "^1.6.6",
"validate-color": "^2.2.4"
},
"files": [
"dist",
"types.js",
"types.d.ts"
]
}