-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 837 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 837 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
29
30
31
32
{
"name": "wceu2023",
"version": "1.0.0",
"description": "WordCampp Europe 2023: Building Interactive Blocks, a step-by-step workshop",
"author": "luisherranz",
"scripts": {
"start": "concurrently 'wp-scripts start --experimental-modules' 'wp-now start'",
"dev": "wp-scripts start --experimental-modules",
"build": "wp-scripts build --experimental-modules"
},
"prettier": {
"useTabs": true,
"tabWidth": 4,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5",
"bracketSameLine": false,
"bracketSpacing": true,
"parenSpacing": true,
"semi": true,
"arrowParens": "always"
},
"dependencies": {
"@wordpress/interactivity": "^5.4.0"
},
"devDependencies": {
"@wordpress/scripts": "^27.6.0",
"@wp-now/wp-now": "^0.1.49",
"concurrently": "^8.0.1",
"prettier": "npm:wp-prettier@2.8.5"
}
}