-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 KB
/
package.json
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
{
"name": "aegis-theme",
"version": "1.0.0",
"description": "Aegis - WordPress Block Theme",
"main": "index.js",
"scripts": {
"build": "webpack --env production",
"start": "webpack --watch --env development",
"dev": "webpack --env development",
"serve": "webpack serve --config webpack.config.js --env development"
},
"keywords": [
"WordPress",
"block theme"
],
"author": "Atmostfear Entertainment",
"license": "GPL-2.0-or-later",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@wordpress/eslint-plugin": "^21.0.0",
"@wordpress/scripts": "^26.12.0",
"babel-loader": "^9.1.3",
"browser-sync-webpack-plugin": "^2.3.0",
"css-loader": "^7.1.2",
"eslint": "^9.10.0",
"eslint-plugin-import": "^2.30.0",
"sass": "^1.78.0",
"sass-loader": "^16.0.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}