-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 866 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "plt",
"version": "1.0.0",
"description": "Plt Server",
"main": "index.ts",
"license": "MIT",
"scripts": {
"dev": "cp .env.dev .env; ts-node src/index.ts",
"docker-up": "docker-compose build; docker-compose up",
"test": "cp .env.test .env ;jest --config ./jest.config.js"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"helmet": "^6.0.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/supertest": "^2.0.12",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.13",
"@types/jest": "^29.2.6",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.5.5",
"supertest": "^6.3.3"
}
}