-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.53 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "test",
"description": "",
"version": "1.0.0",
"license": "UNLICENSED",
"scripts": {
"build": "rm -rf build && tsc --build tsconfig.build.json",
"db": "ts-node $(yarn bin typeorm) -f ./src/config/database.ts",
"db:migrate": "yarn db migration:run",
"dev": "NODE_ENV=development ts-node-dev --watch ['src'] --respawn src/app.ts",
"watch": "nodemon --watch ./src -e ts --exec \"npm run dev\"",
"lint": "eslint --ext .ts <rootDir>/src tests",
"tsc": "tsc",
"test": "NODE_ENV=test jest --config ./jest.config.js --verbose"
},
"dependencies": {
"apollo-server-core": "^3.4.0",
"apollo-server-express": "^3.12.0",
"axios": "^1.3.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"graphql": "^15.6.1",
"jest": "^29.5.0",
"pg": "^8.10.0",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.1.0",
"type-graphql": "^1.1.1",
"typedi": "0.10.0",
"typeorm": "0.2.38",
"typeorm-typedi-extensions": "^0.4.1",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@jest/globals": "^29.5.0",
"@types/jest": "^29.5.0",
"babel-jest": "^29.5.0",
"eslint": "^7.32.0",
"expect": "^27.3.1",
"faker": "^5.5.3",
"jest-extended": "^1.1.0",
"jest-testdouble": "^2.0.0",
"nodemon": "^2.0.22",
"testdouble": "^3.16.2",
"testdouble-jest": "^2.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}