webstudio/server/package.json

52 lines
1.5 KiB
JSON
Raw Permalink Normal View History

{
"name": "step-by-step-server",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test:dev": "NODE_ENV=test_dev tsc-watch --onSuccess 'ts-node ./build/test/test.js'",
"test:unit": "NODE_ENV=unit tsc-watch --onSuccess 'ts-node ./build/test/test.js'",
"test:e2e": "NODE_ENV=e2e tsc-watch --onSuccess 'ts-node ./build/test/test.js'",
2024-12-01 16:12:08 +00:00
"dev": "NODE_ENV=dev tsc-watch --onSuccess 'ts-node ./build/src/main.js'"
},
"author": "IDONTSUDO",
"devDependencies": {
"@testdeck/mocha": "latest",
"@types/chai": "latest",
2023-10-26 17:44:54 +03:00
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/md5": "^2.3.2",
"@types/mocha": "latest",
"@types/node": "^20.4.8",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"chai": "latest",
"eslint": "^8.47.0",
"mocha": "latest",
2024-12-01 16:12:08 +00:00
"node-watch": "^0.7.4",
"source-map-support": "latest",
2023-10-26 17:44:54 +03:00
"ts-node": "^10.9.1",
"tslint": "latest",
2024-12-01 16:12:08 +00:00
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.6.2",
2023-10-26 17:44:54 +03:00
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"express": "^4.18.2",
2023-11-20 00:48:40 +03:00
"express-fileupload": "^1.4.2",
2023-10-26 17:44:54 +03:00
"mongoose": "^7.6.2",
2023-10-27 21:22:48 +03:00
"mongoose-autopopulate": "^1.1.0",
2024-12-01 16:12:08 +00:00
"pattern-matching-ts": "^2.0.0",
"pm2": "^5.3.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.5",
2023-10-26 17:44:54 +03:00
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
2024-12-01 16:12:08 +00:00
"ts-pattern": "^5.1.1",
2023-10-26 17:44:54 +03:00
"tsc-watch": "^6.0.4",
"uuid": "^9.0.1"
}
}