This repository has been archived by the owner on Jun 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.06 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@nick-mazuk/ui",
"version": "0.15.0",
"description": "",
"main": "index.js",
"dependencies": {
"@hcaptcha/react-hcaptcha": "^0.3.6",
"@tinymce/tinymce-react": "^3.10.4",
"csstype": "^3.0.7",
"debounce": "^1.2.1",
"html-to-md": "^0.3.9",
"html2json": "^1.0.2",
"html2plaintext": "^2.1.2",
"markdown-it": "^12.0.4",
"markdown-to-jsx": "^7.1.2",
"parse-full-name": "^1.2.5",
"resize-observer-polyfill": "^1.5.1"
},
"scripts": {
"eslint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"check-types": "tsc --noemit",
"lint": "npm run eslint && npm run check-types",
"test": "jest",
"test:watch": "npm run test -- --watch",
"prepublishOnly": "npm run eslint && npm run test",
"postversion": "git push && git push --tags"
},
"jest": {
"collectCoverage": true,
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFilesAfterEnv": [
"<rootDir>setup-test.ts"
],
"transformIgnorePatterns": [
"node_modules*@nick-mazuk*"
],
"globalSetup": "./test-setup.ts"
},
"type": "module",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@nick-mazuk/eslint-config": "^0.7.27",
"@nick-mazuk/lib": "^0.8.30",
"@nick-mazuk/tsconfig": "^0.1.1",
"@nick-mazuk/ui-config": "^0.7.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.3",
"@types/classnames": "^2.2.11",
"@types/debounce": "^1.2.0",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/hcaptcha__react-hcaptcha": "^0.1.4",
"@types/jest": "^26.0.21",
"@types/jest-axe": "^3.5.1",
"@types/markdown-it": "^12.0.1",
"@types/node": "^14.14.35",
"@types/parse-full-name": "^1.2.0",
"@types/react": "^17.0.3",
"@types/validator": "^13.1.3",
"babel-jest": "^26.6.3",
"classnames": "^2.2.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.22.0",
"framer-motion": "^4.0.0",
"jest": "^26.6.3",
"jest-axe": "^4.1.0",
"jest-chance": "^0.1.8",
"next": "^10.0.9",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3",
"validator": "^13.5.2"
},
"peerDependencies": {
"@nick-mazuk/lib": ">= 0.8.30",
"@nick-mazuk/ui-config": "^0.7.0",
"classnames": ">= 2.2.6",
"framer-motion": ">= 4.0.0",
"next": ">= 10.0.9",
"validator": ">= 13.5.2"
},
"keywords": [],
"author": "",
"license": "MIT"
}