-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.31 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
{
"name": "@refactco/ui-kit",
"version": "1.3.0",
"description": "UI kit is a sets of react components which is going to be used in the wordpress plugins",
"main": "./dist/ui-kit-expose.js",
"types": "./dist/ui-kit-types.d.ts",
"files": ["dist"],
"scripts": {
"wp": "wp-scripts build",
"cp:assets": "cp -r ./src/elements/icon/sprites/ ./dist/elements/icon",
"tsc": "rm -rf dist && tsc --project ./tsconfig.publish.json",
"dts:bundle": "dts-bundle-generator --external-imports react @wordpress/components @szhsin/react-accordion -o ./dist/ui-kit-types.d.ts ./src/ui-kit-expose.ts",
"dts:publish": "npm run tsc && npm run dts:bundle",
"prepublishOnly": "npm run dts:publish",
"dev": "webpack-dev-server",
"prod": "webpack-cli",
"build": "npm ci && npm run prod",
"lint": "eslint"
},
"author": {
"name": "Refact Developers",
"email": "[email protected]",
"url": "https://refact.co"
},
"contributors": [
{
"name": "Hamidreza Amini",
"email": "[email protected]",
"url": "http://hramini.ir"
}
],
"keywords": ["react", "typescript", "wordpress"],
"license": "MIT",
"dependencies": {
"@szhsin/react-accordion": "1.2.3",
"@types/react-beautiful-dnd": "13.1.7",
"@wordpress/components": "25.13.0",
"css-loader": "6.8.1",
"file-loader": "6.2.0",
"react": "18.2.0",
"react-beautiful-dnd": "13.1.1",
"react-dom": "18.2.0",
"react-router": "6.26.1",
"react-router-dom": "6.26.1",
"react-tooltip": "5.25.0",
"style-loader": "3.3.3",
"styled-components": "6.1.1",
"url-loader": "4.1.1"
},
"devDependencies": {
"@babel/preset-env": "7.23.5",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@types/react": "18.2.43",
"@types/react-dom": "18.2.17",
"babel-loader": "9.1.3",
"dotenv-webpack": "8.0.1",
"dts-bundle-generator": "9.0.0",
"eslint": "8.55.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"raw-loader": "4.0.2",
"ts-loader": "9.5.1",
"typescript": "5.3.3",
"webpack": "5.89.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
}
}