cookie-dialog-monster/packages/api/package.json

39 lines
967 B
JSON
Raw Permalink Normal View History

{
"name": "api",
"version": "1.0.0",
"scripts": {
2024-02-16 08:23:26 +00:00
"build": "rimraf build; tsc",
"dev": "nodemon",
2024-05-04 12:21:50 +00:00
"lint": "eslint --fix",
2024-04-03 17:52:10 +00:00
"start": "NODE_PATH=build node build/index.js"
},
"dependencies": {
2024-02-16 08:23:26 +00:00
"@fastify/cors": "^9.0.1",
"@fastify/rate-limit": "^9.1.0",
2024-05-04 12:21:50 +00:00
"fastify": "^4.26.2",
2024-02-16 08:54:57 +00:00
"node-fetch": "^2.7.0",
2024-08-25 10:30:55 +00:00
"ua-parser-js": "^1.0.37",
"yup": "^1.4.0"
},
"devDependencies": {
2024-05-04 12:21:50 +00:00
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.12.8",
2024-02-16 08:54:57 +00:00
"@types/node-fetch": "2.6.11",
"@types/ua-parser-js": "^0.7.39",
2024-05-04 12:21:50 +00:00
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
2024-02-16 08:23:26 +00:00
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
2024-05-04 12:21:50 +00:00
"nodemon": "^3.1.0",
2023-09-29 15:45:52 +00:00
"rimraf": "^5.0.5",
2024-02-16 08:23:26 +00:00
"ts-node": "^10.9.2",
2023-05-20 15:24:27 +00:00
"tsconfig-paths": "^4.2.0",
2024-05-04 12:21:50 +00:00
"typescript": "^5.4.5"
},
"engines": {
2023-10-25 06:58:53 +00:00
"node": "20.x"
},
2024-10-15 09:51:07 +00:00
"packageManager": "yarn@4.2.1"
}