keyoxide-web/package.json

87 lines
2.7 KiB
JSON
Raw Normal View History

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