swaf/package.json

83 lines
2.5 KiB
JSON
Raw Permalink Normal View History

2020-04-22 15:52:17 +02:00
{
2020-11-12 16:11:16 +01:00
"name": "swaf",
2021-04-22 18:18:37 +02:00
"version": "0.23.10",
2020-11-12 16:11:16 +01:00
"description": "Structure Web Application Framework.",
2021-02-21 13:19:28 +01:00
"repository": "https://eternae.ink/ashpie/swaf",
2020-04-22 15:52:17 +02:00
"author": "Alice Gaudon <alice@gaudon.pro>",
"license": "MIT",
2020-08-25 18:26:37 +02:00
"readme": "README.md",
"publishConfig": {
2020-08-25 18:26:37 +02:00
"registry": "https://registry.npmjs.com",
"access": "public"
},
"main": "dist/main.js",
2020-04-22 15:52:17 +02:00
"types": "dist/index.d.ts",
"scripts": {
2020-04-23 11:40:55 +02:00
"test": "jest --verbose --runInBand",
"clean": "node scripts/clean.js",
"prepare-sources": "node scripts/prepare-sources.js",
"compile": "yarn clean && tsc",
"build": "yarn prepare-sources && yarn compile && node scripts/dist.js",
"dev": "yarn prepare-sources && concurrently -k -n \"Typescript,Node,Webpack,Maildev\" -p \"[{name}]\" -c \"blue,green,red,yellow\" \"tsc --watch\" \"nodemon\" \"maildev\"",
"lint": "eslint .",
"release": "yarn build && yarn lint && yarn test && cd dist && yarn publish"
2020-04-22 15:52:17 +02:00
},
"devDependencies": {
2020-07-09 14:18:05 +02:00
"@types/compression": "^1.7.0",
2021-01-22 13:42:15 +01:00
"@types/config": "^0.0.38",
"@types/connect-flash": "^0.0.36",
2020-07-11 11:15:39 +02:00
"@types/cookie": "^0.4.0",
"@types/cookie-parser": "^1.4.2",
2020-07-12 11:46:21 +02:00
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
2020-06-14 21:47:18 +02:00
"@types/formidable": "^1.0.31",
"@types/geoip-lite": "^1.1.31",
2020-07-11 11:15:39 +02:00
"@types/jest": "^26.0.4",
"@types/mjml": "^4.0.4",
2020-04-23 15:41:16 +02:00
"@types/mysql": "^2.15.10",
"@types/nanoid": "^2.1.0",
2020-07-12 11:46:21 +02:00
"@types/node-fetch": "^2.5.7",
2020-04-23 15:41:16 +02:00
"@types/nodemailer": "^6.4.0",
"@types/nunjucks": "^3.1.3",
2020-07-12 11:46:21 +02:00
"@types/on-finished": "^2.3.1",
2020-04-23 18:05:04 +02:00
"@types/redis": "^2.8.18",
"@types/supertest": "^2.0.10",
2020-07-12 11:46:21 +02:00
"@types/uuid": "^8.0.0",
2020-04-23 15:41:16 +02:00
"@types/ws": "^7.2.4",
2020-09-25 11:38:05 +02:00
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
2021-03-30 12:06:10 +02:00
"concurrently": "^6.0.0",
2020-09-25 11:38:05 +02:00
"eslint": "^7.9.0",
2020-07-11 11:15:39 +02:00
"jest": "^26.1.0",
"maildev": "^1.1.0",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.6",
2020-11-02 17:52:16 +01:00
"supertest": "^6.0.0",
2020-07-11 11:15:39 +02:00
"ts-jest": "^26.1.1",
2020-08-26 14:29:03 +02:00
"typescript": "^4.0.2"
2020-07-11 11:15:39 +02:00
},
"dependencies": {
2020-08-26 14:29:03 +02:00
"argon2": "^0.27.0",
2020-07-09 14:18:05 +02:00
"compression": "^1.7.4",
"config": "^3.3.1",
"connect-flash": "^0.1.1",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
2020-04-22 15:52:17 +02:00
"express": "^4.17.1",
2020-04-23 18:05:04 +02:00
"express-session": "^1.17.1",
2020-06-14 21:47:18 +02:00
"formidable": "^1.2.2",
"geoip-lite": "^1.4.2",
"mjml": "^4.6.2",
"mysql": "^2.18.1",
"nanoid": "^3.1.20",
"nodemailer": "^6.4.6",
"nunjucks": "^3.2.1",
"on-finished": "^2.3.0",
2020-04-23 18:05:04 +02:00
"redis": "^3.0.2",
2020-08-26 14:29:03 +02:00
"ts-node": "^9.0.0",
"tslog": "^3.0.1",
2020-05-02 10:59:53 +02:00
"uuid": "^8.0.0",
2020-04-22 15:52:17 +02:00
"ws": "^7.2.3"
}
}