-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "marvhock.com",
"version": "1.0.0",
"description": "Personal website of Marvin Hockenjos",
"author": "Marvin Hockenjos",
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">=18.12"
},
"scripts": {
"build": "rm -rf static/dist && webpack --mode production",
"dev": "webpack --mode development --watch",
"start": "npm run dev"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"assets-webpack-plugin": "^7.1.1",
"babel-loader": "^10.0.0",
"cross-env": "^10.0.0",
"css-loader": "^7.1.2",
"cssnano": "^7.1.0",
"mini-css-extract-plugin": "^2.9.4",
"postcss": "^8.5.6",
"postcss-import": "^16.1.1",
"postcss-loader": "^8.1.0",
"postcss-nested": "^7.0.2",
"postcss-preset-env": "^10.2.4",
"postcss-simple-vars": "^7.0.1",
"rimraf": "^6.0.1",
"sass": "^1.90.0",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"tachyons": "^4.12.0",
"webpack": "^5.101.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}