Constnium/package.json

33 lines
715 B
JSON
Raw Permalink Normal View History

2022-06-22 19:02:25 +02:00
{
"name": "constnium",
"version": "0.0.1",
"description": "Calculate your constant based on your first name",
2022-06-22 19:41:32 +02:00
"main": "src/server.js",
2022-06-22 19:02:25 +02:00
"scripts": {
"main": "node .",
"debug": "nodemon ."
},
"repository": {
"type": "git",
"url": "git@git.kennel.ml:Anri/Constnium.git"
},
"keywords": [
"constant",
2022-06-22 19:04:16 +02:00
"first-name"
2022-06-22 19:02:25 +02:00
],
"author": "Mylloon",
2023-02-15 15:40:45 +01:00
"license": "AGPL-3.0-or-later",
2022-06-22 19:20:40 +02:00
"dependencies": {
2022-06-22 19:41:32 +02:00
"ejs": "^3.1.8",
2022-06-23 02:00:30 +02:00
"express": "^4.18.1",
2022-06-23 20:59:13 +02:00
"marked": "^4.0.17"
2022-06-23 02:27:43 +02:00
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.3",
"eslint-plugin-promise": "^6.0.0"
2022-06-22 19:20:40 +02:00
}
2022-06-22 19:02:25 +02:00
}