1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-23 00:14:21 +00:00
triennale-appunti-steffo/package.json
2020-03-10 00:19:30 +01:00

34 lines
894 B
JSON

{
"private": true,
"name": "appuntiweb",
"version": "0.2.1",
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
"build": "preact build --no-prerender --dest docs",
"serve": "npm run -s build && preact serve",
"dev": "preact watch",
"lint": "eslint src",
"ghpages": "npm run -s build && git add docs && git commit -m Update && git push"
},
"eslintConfig": {
"extends": "eslint-config-synacor"
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"if-env": "^1.0.0",
"preact-cli": "^3.0.0-rc.8"
},
"dependencies": {
"css-loader": "^3.4.2",
"file-loader": "^5.0.2",
"history": "^4.10.1",
"preact": "^10.3.1",
"preact-render-to-string": "^5.1.4",
"preact-router": "^3.2.1",
"showdown": "^1.9.1",
"style-loader": "^1.1.3"
}
}