Tristan Daniël Maat
b3f799507d
Apparently "dev dependencies" are only supposed to be things that are required at run time for dev things, *not* things like typescript that don't end up on the website. buildDependencies would be nice, but that is not this.
50 lines
1.5 KiB
JSON
50 lines
1.5 KiB
JSON
{
|
|
"name": "tlaternet",
|
|
"version": "1.0.0",
|
|
"description": "tlaternet web interface",
|
|
"author": "Tristan Maat <tm@tlater.net>",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@babel/preset-env": "^7.8.4",
|
|
"@types/jquery": "^3.3.33",
|
|
"jstransformer-markdown-it": "^2.1.0",
|
|
"parcel": "^2.0.0-alpha.3.2",
|
|
"posthtml-favicons": "^1.3.0",
|
|
"pug": "^2.0.4",
|
|
"sass": "^1.25.0",
|
|
"typescript-language-server": "^0.4.0",
|
|
"@fortawesome/fontawesome-free": "^5.12.1",
|
|
"@types/react": "^16.9.23",
|
|
"@types/react-redux": "^7.1.7",
|
|
"bootstrap": "^4.0.0",
|
|
"classnames": "^2.2.6",
|
|
"immutability-helper": "^3.0.1",
|
|
"jquery": "^3.5.1",
|
|
"popper.js": "^1.16.1",
|
|
"react": "^16.13.0",
|
|
"react-dom": "^16.13.1",
|
|
"react-redux": "^7.2.0",
|
|
"redux": "^4.0.5",
|
|
"redux-act": "^1.7.7",
|
|
"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); rename '.html' '.html.hbs' dist/browser/*.html"
|
|
},
|
|
"targets": {
|
|
"browser": {
|
|
"engines": {
|
|
"browsers": [
|
|
">1%",
|
|
"not dead"
|
|
]
|
|
},
|
|
"distDir": "dist"
|
|
}
|
|
}
|
|
}
|