-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "hashavshevet-sync",
"version": "1.0.0",
"description": "",
"main": "node app.ts",
"scripts": {
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"prebuild": "npm run lint",
"build": "tsc",
"prestart": "npm run build",
"start": "tsc && node dist/app.js",
"dev": "ts-node app.ts",
"generate": "graphql-codegen"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^15.0.0",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"request": "^2.88.2",
"sofa-api": "^0.7.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.14.0",
"@graphql-codegen/typescript": "^1.14.0",
"@graphql-codegen/typescript-resolvers": "^1.14.0",
"@types/node": "^13.13.12",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
}
}