-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "language-app",
"private": true,
"version": "1.0.0",
"license": "MIT",
"scripts": {
"echo": "echo \"Hello from monorepo setup\"",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"dev": "turbo run dev",
"install:ci": "npm i",
"psql:local:db": "docker exec -ti language-app-postgres psql -U postgres -h localhost -p 5432",
"prettier:format": "npx prettier --write ."
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@language-app/eslint-config": "*",
"@types/axios": "^0.14.0",
"@types/function-bind": "^1.1.6",
"@types/jest": "^26.0.5",
"@types/node": "^17.0.22",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"cross-env": "^7.0.3",
"gen-env-types": "^1.0.5",
"jest": "^26.1.0",
"prisma": "^4.0.0",
"ts-jest": "^26.1.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@prisma/client": "^4.3.0",
"awilix": "^7.0.3",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"dotenv-safe": "^8.2.0",
"express-async-errors": "^3.1.1",
"reflect-metadata": "^0.1.13"
}
}