44 lines
1.6 KiB
JSON
44 lines
1.6 KiB
JSON
{
|
|
"name": "text-modifier-rest",
|
|
"version": "1.0.0",
|
|
"description": "Rest-Services for various text generations",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"build": "tsc && npm run transform-emoji-map",
|
|
"debug": "npm run build && npm run watch-debug",
|
|
"serve-debug": "nodemon --inspect dist/server.js DEBUG",
|
|
"serve": "node dist/server.js",
|
|
"start": "npm run serve",
|
|
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
|
|
"watch-node": "nodemon dist/server.js",
|
|
"watch-ts": "tsc -w",
|
|
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
|
|
"transform-emoji-map": "node src/buildScripts/transformEmojiMap/transformEmojiMap.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/StarAppeal/rest-text-manipulator"
|
|
},
|
|
"author": "tsomic, starappeal",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"braille": "^1.1.0",
|
|
"concurrently": "^8.2.2",
|
|
"express": "^4.18.2",
|
|
"nodemon": "^3.0.2",
|
|
"string-similarity": "^4.0.4",
|
|
"translatte": "^3.0.1",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node12": "^12.1.0",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.10.4",
|
|
"@types/string-similarity": "^4.0.2",
|
|
"@typescript-eslint/eslint-plugin": "^6.13.2",
|
|
"@typescript-eslint/parser": "^6.13.2",
|
|
"prettier": "^3.1.1"
|
|
}
|
|
}
|