eeg_nest/package.json

93 lines
2.7 KiB
JSON
Raw Permalink Normal View History

2023-05-06 00:18:32 +00:00
{
"name": "eegsac",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
2023-05-07 00:14:11 +00:00
"test:e2e": "jest --config ./test/jest-e2e.json",
2023-05-17 18:04:11 +00:00
"ssr": "concurrently \"node esbuild.js\" \"tailwindcss -i static/tailwind.css -o ./static/styles.css --watch\"",
2023-06-11 02:31:03 +00:00
"tailwind": "tailwindcss -i static/tailwind.css -o ./static/styles.css --watch"
2023-05-06 00:18:32 +00:00
},
"dependencies": {
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/serve-static": "^3.0.1",
2023-05-06 00:51:36 +00:00
"@nestjs/typeorm": "^9.0.1",
2023-05-07 17:44:02 +00:00
"axios": "^1.4.0",
2023-05-07 19:33:32 +00:00
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
2023-05-10 16:37:35 +00:00
"docx": "^8.0.4",
2023-05-09 16:55:26 +00:00
"dotenv": "^16.0.3",
2023-05-06 00:51:36 +00:00
"mysql2": "^3.2.4",
2023-05-11 15:45:12 +00:00
"qrcode": "^1.5.3",
2023-05-06 00:18:32 +00:00
"reflect-metadata": "^0.1.13",
2023-05-06 00:51:36 +00:00
"rxjs": "^7.2.0",
2023-05-06 11:57:46 +00:00
"solid-js": "^1.7.4",
2023-05-06 00:51:36 +00:00
"typeorm": "^0.3.15"
2023-05-06 00:18:32 +00:00
},
"devDependencies": {
"@nestjs/cli": "^9.0.0",
2023-05-06 00:51:36 +00:00
"@nestjs/platform-fastify": "^9.4.0",
2023-05-06 00:18:32 +00:00
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@types/express": "^4.17.13",
"@types/jest": "29.5.0",
"@types/node": "18.15.11",
2023-05-12 15:54:19 +00:00
"@types/qrcode": "^1.5.0",
2023-05-06 00:18:32 +00:00
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
2023-05-07 00:06:11 +00:00
"autoprefixer": "^10.4.14",
2023-05-08 00:01:18 +00:00
"concurrently": "^8.0.1",
2023-05-06 11:57:46 +00:00
"esbuild": "^0.17.18",
"esbuild-plugin-solid": "^0.5.0",
2023-05-06 00:18:32 +00:00
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
2023-05-07 00:06:11 +00:00
"glob": "^10.2.2",
2023-05-06 00:18:32 +00:00
"jest": "29.5.0",
2023-05-07 00:06:11 +00:00
"postcss": "^8.4.23",
2023-05-07 03:30:00 +00:00
"rollup": "^3.21.5",
2023-05-06 11:57:46 +00:00
"rollup-plugin-copy": "^3.4.0",
2023-05-07 03:30:00 +00:00
"rollup-plugin-esbuild": "^5.0.0",
2023-05-06 11:57:46 +00:00
"rollup-route-manifest": "^1.0.0",
2023-05-06 00:18:32 +00:00
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
2023-05-07 00:06:11 +00:00
"tailwindcss": "^3.3.2",
2023-05-06 00:18:32 +00:00
"ts-jest": "29.0.5",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.2.0",
"typescript": "^4.7.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}