mirror of
https://github.com/Steffo99/unisteffo.git
synced 2024-11-23 00:14:21 +00:00
30 lines
680 B
JSON
30 lines
680 B
JSON
|
{
|
||
|
"private": true,
|
||
|
"name": "appuntiweb",
|
||
|
"version": "0.0.0",
|
||
|
"license": "MIT",
|
||
|
"scripts": {
|
||
|
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
|
||
|
"build": "preact build",
|
||
|
"serve": "preact build && preact serve",
|
||
|
"dev": "preact watch",
|
||
|
"lint": "eslint src"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"extends": "eslint-config-synacor"
|
||
|
},
|
||
|
"eslintIgnore": [
|
||
|
"build/*"
|
||
|
],
|
||
|
"devDependencies": {
|
||
|
"eslint": "^4.5.0",
|
||
|
"eslint-config-synacor": "^1.1.0",
|
||
|
"if-env": "^1.0.0",
|
||
|
"preact-cli": "^2.0.0"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"preact": "^8.5.2",
|
||
|
"preact-compat": "^3.17.0",
|
||
|
"preact-render-to-string": "^4.1.0"
|
||
|
}
|
||
|
}
|