-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.35 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
{
"name": "logo-maker-plugin",
"description": "A simple editor for creating logos - with support for WordPress.",
"version": "1.13.1",
"scripts": {
"start-plugin": "wp-scripts start",
"plugin-build": "NODE_ENV=production wp-scripts build",
"linux:make-zip": "npm run plugin-build && zip -r logo_maker_plugin.zip index.php plugin_build && mv logo_maker_plugin.zip development/",
"font:all": "npm run font:config && npm run font:download",
"font:config": "node development/createFontConfigFile.js",
"font:download": "node development/downloadFonts.js",
"packages-update": "wp-scripts packages-update",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@beyonk/google-fonts-webpack-plugin": "^1.7.0",
"@loadable/component": "^5.15.2",
"@svgdotjs/svg.js": "^3.1.2",
"body-scroll-lock": "^3.1.5",
"classnames": "^2.3.1",
"jszip": "^3.8.0",
"opentype.js": "^1.3.4",
"postcss-import": "^14.0.2",
"pullstate": "^1.23.0",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-router-dom": "^6.2.2",
"react-select": "^5.2.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@playwright/test": "^1.25.0",
"@types/css-font-loading-module": "^0.0.7",
"@types/loadable__component": "^5.13.4",
"@types/opentype.js": "^1.3.3",
"@types/react": "^17.0.39",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^17.0.12",
"@types/react-router-dom": "^5.3.3",
"@types/react-select": "^5.0.0",
"@types/snowpack-env": "^2.3.4",
"@types/uuid": "^8.3.4",
"@types/wordpress__blocks": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"@wordpress/babel-preset-default": "^6.5.1",
"@wordpress/blocks": "^11.2.2",
"@wordpress/i18n": "^4.3.1",
"@wordpress/scripts": "^22.5.0",
"autoprefixer": "^10.4.2",
"css-loader": "^6.6.0",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss-loader": "^6.2.1",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.7",
"typescript": "^4.6.2"
},
"browserslist": [
"defaults",
"not ie < 11",
"last 2 versions",
"> 5%",
"iOS 7",
"last 3 iOS versions"
]
}