-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "payload-admin-bar",
"version": "1.0.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:jacobsfletch/payload-admin-bar.git",
"description": "An admin bar for React apps using Payload CMS",
"author": "jacobsfletch@gmail.com",
"license": "MIT",
"keywords": [
"payload",
"cms",
"admin",
"plugin",
"typescript",
"react"
],
"scripts": {
"build": "yarn lint && tsc",
"build-demo": "yarn lint && webpack --config webpack.demo.config.js",
"dev": "webpack-dev-server --hot --inline --config webpack.development.config.js",
"lint": "eslint ."
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^8.1.0",
"eslint-webpack-plugin": "^2.4.1",
"html-webpack-plugin": "^3.2.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-hot-loader": "^4.12.19",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"files": [
"dist"
]
}