swaf-boilerplate/package.json

59 lines
2.1 KiB
JSON
Raw Permalink Normal View History

2020-04-23 14:55:48 +02:00
{
2020-06-27 18:07:58 +02:00
"name": "example-app",
2020-04-23 14:55:48 +02:00
"version": "0.1.0",
"description": "Example App based on swaf",
2021-04-22 12:30:40 +02:00
"repository": "https://eternae.ink/ashpie/swaf-boilerplate",
2020-04-23 14:55:48 +02:00
"author": "Alice Gaudon <alice@gaudon.pro>",
"private": true,
"main": "dist/main.js",
2020-04-23 18:07:39 +02:00
"scripts": {
"test": "jest --verbose --runInBand",
"clean": "node scripts/clean.js",
"prepare-sources": "node scripts/prepare-sources.js",
2021-11-20 19:54:59 +01:00
"compile": "yarn clean && yarn prepare-sources && tsc --build",
"build": "yarn compile && node . pre-compile-views && node scripts/dist.js",
"build-production": "NODE_ENV=production yarn build",
"dev": "yarn compile && concurrently -k -n \"Maildev,Typescript,ViewPreCompile,Node\" -p \"[{name}]\" -c \"yellow,blue,red,green\" \"maildev\" \"tsc --build --watch --preserveWatchOutput\" \"nodemon -i public -i intermediates -- pre-compile-views --watch\" \"nodemon -i public -i intermediates\"",
"lint": "eslint .",
"start": "yarn build-production && node ."
2020-04-23 18:07:39 +02:00
},
2020-04-23 14:55:48 +02:00
"devDependencies": {
2021-12-24 15:18:09 +01:00
"@tsconfig/svelte": "^3.0.0",
2022-03-07 19:04:29 +01:00
"@types/config": "^0.0.41",
2020-04-23 18:07:39 +02:00
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
2021-11-20 19:54:59 +01:00
"@types/formidable": "^2.0.0",
"@types/jest": "^27.0.3",
"@types/mysql": "^2.15.15",
2021-12-24 15:18:09 +01:00
"@types/node": "^17.0.4",
"@types/nodemailer": "^6.4.0",
"@types/nunjucks": "^3.1.3",
2021-11-20 19:54:59 +01:00
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
2022-03-07 19:04:29 +01:00
"concurrently": "^7.0.0",
2021-11-21 17:52:56 +01:00
"eslint": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-svelte3": "^3.2.1",
2020-04-23 18:07:39 +02:00
"imagemin-gifsicle": "^7.0.0",
2021-12-24 15:18:09 +01:00
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.2",
2021-11-20 19:54:59 +01:00
"imagemin-svgo": "^10.0.0",
2021-12-24 15:18:09 +01:00
"imagemin-webp": "^7.0.0",
"jest": "^27.0.4",
2021-01-25 11:43:36 +01:00
"maildev": "^1.1.0",
2020-04-23 18:07:39 +02:00
"nodemon": "^2.0.3",
2021-04-30 11:54:50 +02:00
"sass": "^1.32.12",
2021-11-21 17:52:56 +01:00
"svelte": "^3.44.2",
"svgo": "^2.3.0",
"ts-jest": "^27.0.3",
2021-11-21 16:59:06 +01:00
"typescript": "^4.0.2"
2020-04-23 14:58:14 +02:00
},
"dependencies": {
2020-04-23 18:07:39 +02:00
"config": "^3.3.1",
"express": "^4.17.1",
2022-03-07 19:04:29 +01:00
"swaf": "^0.25.1"
2020-04-23 14:55:48 +02:00
}
}