-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"name": "@admin-remix/magic-forms",
"version": "0.0.1",
"description": "Magic Forms is used to auto generate form schema data based on a GraphQL introspection data call",
"main": "index.ts",
"scripts": {
"tsc": "tsc",
"lint:fix": "ts-standard --fix",
"lint:check": "ts-standard --check",
"test": "jest",
"build": "npm run lint:check && rimraf ./dist && npm run tsc"
},
"keywords": [],
"author": "AdminRemix LLC",
"license": "MIT",
"devDependencies": {
"@pollyjs/core": "^5.1.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@types/setup-polly-jest": "^0.5.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"rimraf": "^3.0.2",
"setup-polly-jest": "^0.10.0",
"ts-jest": "^27.0.7",
"ts-standard": "^10.0.0",
"typescript": "^4.4.4"
},
"engines": {
"node": ">12.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"npm run lint:check"
]
},
"dependencies": {
"change-case": "^4.1.2",
"graphql": "^16.0.1",
"graphql-request": "^3.6.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/admin-remix/magic-forms.git"
},
"bugs": {
"url": "https://github.com/admin-remix/magic-forms/issues"
},
"homepage": "https://github.com/admin-remix/magic-forms#readme"
}