-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.24 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
{
"name": "custom-field-maker",
"version": "1.5.25",
"description": "custom field maker for a-blog cms",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"css",
"json",
"screenshot.png"
],
"target": "es5",
"module": "commonjs",
"scripts": {
"test": "jest ./tests/**.test.js",
"build": "npm-run-all -p build:*",
"build:babel": "babel src --out-dir lib",
"build:svgo": "svgo ./src/assets/images -o ./lib/assets/images",
"build:prod": "NODE_ENV=production webpack --config webpack.prod.js",
"dev": "webpack serve --config webpack.dev.js",
"start": "npm-run-all -p dev",
"prettier": "prettier ./src/**/*.js --write",
"deploy": "np --yolo --any-branch",
"prepack": "npm run build",
"prepare": "husky"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"author": "appleple",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.26.0",
"classnames": "^2.5.1",
"highlight.js": "~11.10.0",
"html-entities": "^2.5.2",
"js-beautify": "1.7.5",
"react-copy-to-clipboard": "^5.1.0",
"react-tooltip": "^5.28.0"
},
"peerDependencies": {
"react": ">=16.8.0 <19.0.0",
"react-dom": ">=16.8.0 <19.0.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-webpack-plugin": "^4.2.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.6",
"jest": "^29.7.0",
"np": "^10.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"style-loader": "^4.0.0",
"svgo": "^3.3.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1"
}
}