-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.28 KB
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
{
"name": "altly-ai-text-generator",
"version": "1.1.1",
"description": "WordPress plugin for Altly - AI Text Generator",
"main": "index.js",
"scripts": {
"dev": "webpack serve --mode development",
"build": "webpack --mode production",
"typecheck": "tsc --noEmit",
"zip": "yarn build && rm -rf altly altly.zip && trap 'rm -rf altly' EXIT && mkdir altly && rsync -a --exclude='node_modules' --exclude='src' --exclude='*.map' --exclude='.DS_Store' --exclude='.env*' --exclude='.git*' --exclude='build/altly.php' --exclude='build/tests' --exclude='build/vendor' altly.php build languages readme.txt vendor altly/ && zip -r altly.zip altly",
"wp-env": "wp-env",
"e2e": "node scripts/e2e.mjs",
"e2e:test": "playwright test"
},
"dependencies": {
"@heroicons/react": "^2.0.16",
"dotenv-webpack": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.29.6",
"@playwright/test": "^1.48.0",
"@wordpress/env": "^10.6.0",
"pg": "^8.13.1",
"@babel/preset-env": "^7.20.0",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.20.0",
"@types/react": "^18.2.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.7.3",
"mini-css-extract-plugin": "^2.7.4",
"postcss-loader": "^7.0.1",
"sass": "^1.84.0",
"sass-loader": "^16.0.4",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.1",
"typescript": "^5.3.0",
"webpack": "^5.104.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"resolutions": {
"node-forge": "^1.3.2",
"http-proxy-middleware": "^2.0.10",
"launch-editor": "^2.14.1",
"immutable": "^5.1.5",
"websocket-driver": "^0.7.5",
"shell-quote": "^1.8.4",
"on-headers": "^1.1.0",
"follow-redirects": "^1.16.0",
"postcss": "^8.5.10",
"picomatch": "^2.3.2",
"fast-uri": "^3.1.2",
"@babel/plugin-transform-modules-systemjs": "^7.29.4",
"tailwindcss/**/glob": "^10.5.0",
"glob/minimatch": "^9.0.7",
"webpack-dev-server/**/minimatch": "^3.1.3",
"webpack-dev-server/**/qs": "^6.15.2",
"postcss-loader/**/js-yaml": "^4.2.0"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}