This repository has been archived by the owner on Oct 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
53
54
55
56
57
{
"name": "botble-graphql",
"version": "0.0.2",
"description": "The migration for Botble from Rest(Laravel) to GraphQL",
"homepage": "https://botble-graphql.toiyeulaptrinh.com",
"scripts": {
"dev": "ts-node-dev --no-notify --respawn --transpileOnly index.ts",
"build": "tsc",
"start": "NODE_ENV=production node dist",
"lint": "eslint --ignore-path .gitignore --ignore-path .prettierignore",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"apollo-server-express": "^2.11.0",
"got": "^10.6.0",
"graphql": "^14.6.0",
"graphql-iso-date": "^3.6.1",
"nexus": "^0.12.0-rc.13",
"ramda": "^0.27.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"engines": {
"node": ">= 13.3.0"
},
"repository": {
"type": "git+ssh",
"url": "git@github.com:nghiepit/botble-graphql.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{md,json,yml}": [
"prettier --write",
"git add"
],
"*.{js,ts}": [
"npm run lint:fix --",
"git add"
]
},
"author": "Nghiep <me@nghiepit.dev>, <dev@12bay.vn>",
"license": "MIT"
}