-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 861 Bytes
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
{
"name": "taskshunt",
"version": "1.0.0",
"description": "TaskShunt WordPress Plugin",
"private": true,
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"zip": "npm run build && bash scripts/zip.sh",
"zip:review": "npm run build && bash scripts/zip-review.sh",
"test:e2e": "cypress open",
"test:e2e:run": "cypress run"
},
"devDependencies": {
"@wordpress/api-fetch": "^7",
"@wordpress/dom-ready": "^4",
"@wordpress/scripts": "^30",
"css-loader": "^7.1.4",
"cypress": "^13",
"mini-css-extract-plugin": "^2.10.2",
"sass": "^1.99.0",
"sass-loader": "^16.0.7",
"ts-loader": "^9",
"typescript": "^5",
"webpack": "^5",
"webpack-cli": "^5"
}
}