keyoxide-web/package.json

83 lines
2.5 KiB
JSON
Raw Permalink Normal View History

2020-07-30 11:34:58 +02:00
{
"name": "keyoxide-web",
2024-02-01 18:02:04 +01:00
"version": "4.2.7",
2023-03-08 14:51:56 +01:00
"description": "Verifying online identity with cryptography",
"main": "./src/index.js",
2022-02-27 22:59:17 +01:00
"type": "module",
2020-08-07 12:50:00 +02:00
"dependencies": {
2021-10-15 22:23:29 +02:00
"ajv": "^8.6.3",
2020-12-10 17:54:12 +01:00
"bent": "^7.3.12",
2021-05-03 17:09:10 +02:00
"body-parser": "^1.19.0",
2023-10-05 13:06:35 +02:00
"colorjs.io": "^0.4.5",
2024-02-01 17:17:16 +01:00
"doipjs": "^1.2.9",
2022-11-17 22:50:59 +01:00
"dotenv": "^16.0.3",
2020-08-07 12:50:00 +02:00
"express": "^4.17.1",
2023-09-21 22:54:37 +02:00
"express-http-context2": "^1.0.0",
2023-09-22 12:15:10 +02:00
"express-rate-limit": "^7.0.1",
2021-10-14 11:14:51 +02:00
"express-validator": "^6.13.0",
2021-05-02 12:49:03 +02:00
"got": "^11.8.2",
2022-09-28 13:06:53 +02:00
"hash-wasm": "^4.9.0",
2022-11-17 22:19:29 +01:00
"jstransformer-markdown-it": "^3.0.0",
2022-10-06 17:57:07 +02:00
"keyv": "^4.5.0",
2021-05-05 13:49:56 +02:00
"libravatar": "^3.0.0",
2023-09-21 22:54:37 +02:00
"nanoid": "^5.0.1",
2022-09-27 10:36:36 +02:00
"openpgp": "^5.5.0",
2024-01-23 19:26:28 +01:00
"pug": "^3.0.2",
2020-08-30 12:21:45 +02:00
"qrcode": "^1.4.4",
2023-03-24 12:53:33 +01:00
"string-replace-middleware": "^1.0.2",
"winston": "^3.8.2"
2020-08-07 12:50:00 +02:00
},
2020-07-30 11:34:58 +02:00
"devDependencies": {
2023-10-04 13:53:39 +02:00
"@biomejs/biome": "1.2.2",
2022-11-17 22:50:59 +01:00
"@vercel/ncc": "^0.34.0",
2022-03-03 16:25:49 +01:00
"chai": "^4.3.6",
2023-07-13 11:12:07 +02:00
"copy-webpack-plugin": "^11.0.0",
2022-02-25 19:18:46 +01:00
"css-loader": "^6.6.0",
"esmock": "^2.5.0",
2022-11-17 22:19:29 +01:00
"license-check-and-add": "^4.0.5",
2022-02-25 19:18:46 +01:00
"mini-css-extract-plugin": "^2.5.3",
2022-11-17 22:19:29 +01:00
"mocha": "^10.1.0",
2024-01-23 19:24:24 +01:00
"nodemon": "^3.0.3",
2023-09-15 14:24:10 +02:00
"sass": "^1.67.0",
"sass-loader": "^13.3.2",
2022-11-14 20:42:50 +01:00
"standard": "^17.0.0",
2022-02-25 19:18:46 +01:00
"style-loader": "^3.3.1",
2023-09-15 14:24:10 +02:00
"webpack": "^5.88.2",
2022-11-17 22:50:59 +01:00
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.0"
2020-07-30 11:34:58 +02:00
},
"scripts": {
2023-09-14 11:04:31 +02:00
"start": "node ./",
2024-06-02 16:23:57 +02:00
"dev": "LOG_LEVEL=debug npm run watch & npm run build:static:dev",
"pretest": "npm run lint",
"test": "mocha",
"watch": "nodemon --config nodemon.json ./",
2024-06-02 16:23:57 +02:00
"build": "npm run build:server && npm run build:static",
2022-12-12 16:40:24 +01:00
"build:server": "ncc build ./src/index.js -o dist",
2022-09-18 21:31:54 +02:00
"build:static": "webpack --config webpack.config.js --env static=true --env mode=production",
2022-02-25 19:18:46 +01:00
"build:static:dev": "webpack --config webpack.config.js --env static=true --env mode=development",
2024-06-02 16:23:57 +02:00
"lint": "npm run standard:check && npm run biome:check",
2023-10-04 13:53:39 +02:00
"biome:check": "biome check ./src && biome lint ./src",
"biome:fix": "biome check --apply ./src && biome lint --apply ./src",
"standard:check": "standard ./src",
"standard:fix": "standard --fix ./src",
"license:check": "license-check-and-add check",
"license:add": "license-check-and-add add",
"license:remove": "license-check-and-add remove"
2020-07-30 11:34:58 +02:00
},
"repository": {
"type": "git",
2021-05-04 15:41:22 +02:00
"url": "https://codeberg.org/keyoxide/keyoxide-web"
2020-07-30 11:34:58 +02:00
},
"keywords": [
"pgp",
"gpg",
"openpgp",
"encryption",
"decentralized",
"identity"
],
2020-08-07 12:50:00 +02:00
"author": "Yarmo Mackenbach <yarmo@yarmo.eu> (https://yarmo.eu)",
2020-07-30 11:34:58 +02:00
"license": "AGPL-3.0-or-later"
}