-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.05 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.05 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "react-sage",
"version": "0.3.16",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prebuild": "npm run clean && npm run lint && npm run prettier",
"build": "tsc",
"clean": "rm -rf dist",
"docs": "parcel docs/index.html --out-dir docs/dist --no-cache --no-autoinstall",
"build:docs": "parcel build docs/index.html --out-dir docs/dist --no-cache --no-autoinstall",
"lint": "tsc --noEmit && eslint 'src/**/*.{ts,tsx}' --quiet --fix",
"prepublishOnly": "npm run build",
"prettier": "prettier -l 'src/**/*.ts*'",
"prettier:fix": "prettier -- --format",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/meinstein/react-sage.git"
},
"keywords": [
"react",
"hooks",
"form",
"query",
"mutation",
"file",
"input",
"storage"
],
"author": "Maximillian Einstein",
"license": "MIT",
"resolutions": {
"node-forge": ">= 0.10.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@testing-library/react-hooks": "^5.0.3",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-jest": "^26.6.3",
"eslint": "^7.19.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"github-markdown-css": "^4.0.0",
"jest": "^26.6.3",
"marked": "^2.0.0",
"parcel": "^1.12.4",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-markdown": "^5.0.3",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^17.0.1",
"typescript": "^4.1.3"
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/src/**/*.{ts,tsx}"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
}
}