DGCServerVerifier/package.json

41 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2021-09-23 15:38:13 +02:00
{
"name": "greenserver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
2021-09-26 15:42:30 +02:00
"test": "jest --watchAll",
2021-09-25 11:58:41 +02:00
"start": "nodemon --exec \"npx ts-node\" ./src/server.ts"
2021-09-23 15:38:13 +02:00
},
"author": "",
"license": "ISC",
"dependencies": {
2021-09-24 15:21:24 +02:00
"axios": "^0.21.4",
2021-09-23 15:38:13 +02:00
"body-parser": "^1.19.0",
2021-09-24 16:19:56 +02:00
"cors": "^2.8.5",
2021-09-24 15:21:24 +02:00
"dayjs": "^1.10.7",
2021-09-23 15:45:12 +02:00
"dcc-utils": "^0.2.0",
2021-09-23 15:38:13 +02:00
"express": "^4.17.1",
2021-09-23 17:17:00 +02:00
"jsrsasign": "^10.4.0",
2021-09-26 15:42:30 +02:00
"mock-fs": "^5.1.1"
2021-09-23 15:38:13 +02:00
},
"devDependencies": {
2021-09-23 15:45:12 +02:00
"@types/express": "^4.17.13",
2021-09-26 15:42:30 +02:00
"@types/jest": "^27.0.2",
2021-09-23 17:17:00 +02:00
"@types/jsrsasign": "^8.0.13",
2021-09-23 15:38:13 +02:00
"@types/node": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
2021-09-26 15:42:30 +02:00
"babel-preset-env": "^1.7.0",
2021-09-23 15:38:13 +02:00
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
2021-09-26 15:42:30 +02:00
"eslint-plugin-ava": "^13.0.0",
2021-09-23 17:17:00 +02:00
"eslint-plugin-import": "^2.24.2",
2021-09-26 15:42:30 +02:00
"jest": "^27.2.2",
"nodemon": "^2.0.13",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
2021-09-23 15:38:13 +02:00
}
}