-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.75 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
{
"name": "altolith-deploy",
"version": "1.0.0",
"description": "Export WordPress sites as static HTML or WordPress Playground blueprint bundles",
"main": "index.js",
"scripts": {
"build": "MINIFY=true wp-scripts build",
"build:dev": "MINIFY=false wp-scripts build",
"start": "wp-scripts start",
"lint:js": "wp-scripts lint-js '**/*.js'",
"lint:js:fix": "wp-scripts lint-js '**/*.js' --fix",
"test:js": "node --max-old-space-size=4096 node_modules/.bin/jest",
"test:js:watch": "node --max-old-space-size=4096 node_modules/.bin/jest --watch",
"test:js:coverage": "node --max-old-space-size=4096 node_modules/.bin/jest --coverage"
},
"keywords": [
"wordpress",
"static",
"export",
"playground",
"blueprint"
],
"author": "Aristeidis Stathopoulos <aristath@gmail.com>",
"license": "MIT",
"dependencies": {
"@wordpress/api-fetch": "^6.0.0",
"@wordpress/components": "^28.0.0",
"@wordpress/element": "^6.0.0",
"@wordpress/hooks": "^4.0.0",
"@wordpress/i18n": "^5.0.0",
"@wordpress/icons": "^10.0.0",
"p-retry": "^7.1.0",
"parse5": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.6",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.1",
"@wordpress/scripts": "^28.0.0",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.13.10",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
}
}