-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "@inniti/fronnt",
"version": "1.0.0",
"description": "Scalable eCommerce GraphQL API middleware architecture",
"repository": {
"type": "git",
"url": "git+https://github.com/inniti/fronnt.git"
},
"keywords": [
"middleware",
"eCommerce",
"graphql",
"envelop",
"api"
],
"author": "inniti",
"license": "MIT",
"bugs": {
"url": "https://github.com/inniti/fronnt/issues"
},
"homepage": "https://fronnt.io",
"devDependencies": {
"@types/node": "^16.11.13",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{ts,graphql}": "prettier --write"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint --cache --fix"
}
}