1b0aab1713
Webpack was entirely and utterly unmaintainable. This commit throws it out of the window into the gutter where it belongs, and rewrites the entire repository so that it may work with parcel instead.
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "tlaternet",
|
|
"version": "1.0.0",
|
|
"description": "tlaternet web interface",
|
|
"author": "Tristan Maat <tm@tlater.net>",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7.8.4",
|
|
"jstransformer-markdown-it": "^2.1.0",
|
|
"parcel": "^2.0.0-alpha.3.2",
|
|
"pug": "^2.0.4",
|
|
"sass": "^1.25.0"
|
|
},
|
|
"dependencies": {
|
|
"@fortawesome/fontawesome-free": "^5.12.1",
|
|
"bootstrap": "^4.0.0",
|
|
"jquery": "^3.3.1",
|
|
"popper.js": "^1.16.1",
|
|
"three": "^0.101.1"
|
|
},
|
|
"scripts": {
|
|
"build": "parcel build --no-autoinstall $(find src -path src/lib -prune -o -name '*.pug' -print)",
|
|
"serve": "parcel serve --no-autoinstall $(find src -path src/lib -prune -o -name '*.pug' -print)",
|
|
"watch": "parcel watch --no-autoinstall $(find src -path src/lib -prune -o -name '*.pug' -print)",
|
|
"build-dist": "parcel build --no-cache --no-autoinstall $(find src -path src/lib -prune -o -name '*.pug' -print)"
|
|
},
|
|
"targets": {
|
|
"browser": {
|
|
"engines": {
|
|
"browsers": [
|
|
">1%",
|
|
"not dead"
|
|
]
|
|
},
|
|
"distDir": "dist",
|
|
"publicUrl": "https://tlater.net"
|
|
}
|
|
}
|
|
}
|