-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "ernestmarcinko.com",
"version": "1.0.1",
"description": "My personal website",
"private": true,
"main": "server.js",
"type": "module",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"test": "echo \"Error: no test specified\" && exit 1",
"start:prod": "pm2 start ecosystem.config.cjs --env production",
"start:dev": "nodemon",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production"
},
"author": "Ernest Marcinko",
"license": "ISC",
"nodemonConfig": {
"ignore": [
"**/test/**",
"**/docs/**"
],
"delay": 1500
},
"devDependencies": {
"@anag0/typewriter": "github:anag0/typewriter",
"copy-webpack-plugin": "^11.0.0",
"cssnano": "^6.0.1",
"esc": "^0.0.3",
"flappybird-ts": "^0.1.2",
"htmx.org": "^1.9.6",
"htmx-serverless": "^0.1.5",
"nodemon": "^2.0.22",
"postcss": "^8.4.23",
"webpack": "^5.84.0",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"workbox-webpack-plugin": "^6.5.4"
},
"dependencies": {
"sitemap": "^7.1.1",
"zlib": "^1.0.5"
}
}