-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.49 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.49 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
70
71
72
73
{
"name": "plainly-plugin",
"version": "1.4.0",
"description": "Plainly Videos Adobe After Effects plugin",
"author": "Plainly Videos",
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && cross-env NODE_ENV=production node ./../scripts/updateManifest.cjs && cross-env NODE_ENV=production PLUGIN_ENV=production webpack --mode production",
"build-test": "yarn clean && cross-env NODE_ENV=production node ./../scripts/updateManifest.cjs && cross-env NODE_ENV=test PLUGIN_ENV=test webpack --mode production",
"dev": "yarn clean && cross-env NODE_ENV=development node ./../scripts/updateManifest.cjs --dev && cross-env NODE_ENV=development PLUGIN_ENV=development webpack --mode development --watch",
"test": "jest",
"test:ci:coverage": "jest --ci --coverage"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^8.0.0",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.1.5",
"@tanstack/react-query": "^5.66.0",
"archiver": "^5.3.2",
"axios": "^1.13.5",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"form-data": "^4.0.4",
"lodash-es": "^4.17.23",
"lucide-react": "^0.577.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hooks-global-state": "^2.1.0",
"semver": "^7.7.4",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.28.5",
"@jest/globals": "^30.2.0",
"@tailwindcss/forms": "^0.5.9",
"@types/archiver": "^6.0.3",
"@types/dotenv-webpack": "^7.0.8",
"@types/jest": "^30.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/semver": "^7.7.1",
"autoprefixer": "^10.4.20",
"babel-jest": "^30.2.0",
"babel-loader": "^9.2.1",
"cross-env": "^10.0.0",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.0",
"globals": "^15.11.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^30.2.0",
"plainly-types": "workspace:*",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"rimraf": "^6.1.3",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.15",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.1",
"typescript": "~5.6.2",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1"
},
"packageManager": "yarn@3.8.7"
}