oneuptime/File/package.json

29 lines
622 B
JSON
Raw Normal View History

2022-04-30 13:25:36 +00:00
{
"name": "file",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
2022-09-06 18:20:43 +00:00
"start": "ts-node Index.ts",
"compile": "tsc",
"dev": "nodemon",
"audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true",
"test": "jest"
2022-04-30 13:25:36 +00:00
},
"author": "",
2022-09-06 18:20:43 +00:00
"license": "ISC",
"dependencies": {
"Common": "file:../Common",
"Model": "file:../Model",
"CommonServer": "file:../CommonServer",
"ejs": "^3.1.8"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"jest": "^28.1.0",
"ts-jest": "^28.0.2"
}
2022-04-30 13:25:36 +00:00
}