-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 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
{
"name": "myapi",
"version": "0.0.1",
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jest": "^26.0.4",
"@types/node": "^12.12.8",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"apollo-boost": "^0.4.9",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"nodemon": "^1.19.4",
"ts-jest": "^26.1.2",
"ts-node": "8.5.2",
"tslint-config-airbnb": "^5.11.2",
"typeorm-seeding": "^1.6.1",
"typescript": "^3.7.2"
},
"dependencies": {
"apollo-server-express": "^2.9.9",
"express": "^4.17.1",
"graphql": "^14.5.8",
"pg": "^7.13.0",
"reflect-metadata": "^0.1.10",
"type-graphql": "^0.17.5",
"typeorm": "0.2.20"
},
"scripts": {
"start": "nodemon --exec ts-node src/index.ts",
"migrate": "ts-node ./node_modules/.bin/typeorm migration:run",
"seed:run": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed",
"test": "jest --maxWorkers=1",
"lint": "eslint './src/**/*.ts'",
"build": "tsc"
}
}