-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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
{
"name": "typescript-graphql-skeleton",
"version": "1.0.0",
"description": "TypeScript GraphQL API Skeleton app",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"start:dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules --respawn src/index.ts",
"test": "jest --runInBand",
"test:dev": "node --inspect ./node_modules/jest/bin/jest.js --runInBand",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js"
},
"author": "Samuel Caçador",
"license": "MIT",
"dependencies": {
"@apollo/server": "^4.11.2",
"class-validator": "^0.14.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"graphql": "^16.9.0",
"graphql-playground-middleware-express": "^1.7.23",
"graphql-scalars": "^1.23.0",
"mysql2": "^3.11.4",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.11",
"type-graphql": "^2.0.0-rc.2",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.3",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"jest": "^29.7.0",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "5.7.2"
}
}