This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.93 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@blogmail/react",
"version": "1.0.6",
"description": "blogmail react component",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blogmail/blogmail-react.git"
},
"keywords": [
"blogmail",
"react"
],
"author": "Brenden Matthews <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blogmail/blogmail-react/issues"
},
"homepage": "https://github.com/blogmail/blogmail-react#readme",
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"prettier": "2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts-ts": "^3.1.0",
"react-test-renderer": "^16.13.1",
"rollup": "^2.23.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"build/",
"example/"
]
},
"files": [
"build"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{json,md}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"react-load-script": "0.0.6"
}
}