-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.05 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.05 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
{
"name": "stevezelek.com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:app": "webpack-dev-server --open --config webpack.dev.js",
"build:app": "webpack --config webpack.prod.js",
"serve:app": "npm run build:app && http-server public/",
"stats": "webpack --config webpack.stats.js",
"watch": "webpack --config webpack.prod.js --watch"
},
"engines": {
"node": "^18",
"npm": "^10"
},
"dependencies": {
"http-server": "^14.1.1",
"preact": "^10.4.5",
"preact-router": "^4.0.1",
"prismjs": "^1.20.0",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-arrow-functions": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.18.6",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"babel-loader": "8.1.0",
"babel-plugin-prismjs": "^2.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "3.4.2",
"eslint": "^8.21.0",
"eslint-config-google": "^0.14.0",
"eslint-config-preact": "^1.3.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^5.6.0",
"node-fetch": "^2.6.7",
"prism-themes": "^1.9.0",
"sass": "^1.50.0",
"sass-loader": "8.0.2",
"style-loader": "0.23.1",
"svg-inline-loader": "^0.8.0",
"svg-url-loader": "^2.1.1",
"typescript": "^5.5.4",
"url-loader": "^4.1.0",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^4.2.2"
}
}