fileserver/dto/package.json

31 lines
831 B
JSON
Raw Normal View History

2022-08-25 11:39:58 +00:00
{
"name": "dto",
"private": true,
"version": "1.0.0",
2022-08-25 13:13:44 +00:00
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
2022-08-25 11:39:58 +00:00
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2"
},
2022-08-25 13:16:54 +00:00
"devDependencies": {
"@types/node": "^18.6.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@typescript-eslint/typescript-estree": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
2022-08-25 11:39:58 +00:00
"scripts": {
2022-08-25 13:13:44 +00:00
"lint": "eslint \"src/**/*.ts\" && tsc --noEmit",
"lint-fix": "eslint \"src/**/*.ts\" --fix",
"build": "tsc"
2022-08-25 11:39:58 +00:00
}
}