-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.49 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
96
97
98
99
100
101
{
"name": "shookt",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"version": "0.2.16",
"license": "MIT",
"scripts": {
"build": "microbundle-crl --no-compress --css-modules false --format modern,cjs",
"start": "microbundle-crl watch --no-compress --css-modules false --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:lint test:unit test:build",
"test:build": "run-s build",
"test:lint": "semistandard --verbose | snazzy",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom"
},
"dependencies": {
"@craco/craco": "6.x",
"@testing-library/jest-dom": "5.x",
"@testing-library/react": "14.x",
"@testing-library/user-event": "14.x",
"antd": "4.x",
"antd-img-crop": "4.x",
"antd-password-input-strength": "2.x",
"axios": "1.x",
"barangay": "0.x",
"craco-less": "1.x",
"dayjs": "1.x",
"google-libphonenumber": "3.x",
"google-map-react": "2.x",
"page": "1.x",
"qs": "6.x",
"react": "18.x",
"react-color": "2.x",
"react-dom": "18.x",
"react-google-recaptcha": "2.x",
"react-icons": "4.x",
"react-number-format": "5.x",
"react-phone-input-2": "2.x",
"react-scripts": "4.x",
"rooks": "7.x",
"semistandard": "16.x",
"snazzy": "9.x",
"web-vitals": "3.x",
"ws": "8.x"
},
"devDependencies": {
"cross-env": "7.x",
"microbundle-crl": "0.x",
"npm-run-all": "4.x",
"stylelint": "15.x"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!axios|antd|@ant-design|rc-.+?|@babel/runtime).+(js|jsx)$"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"react-hooks/exhaustive-deps": "off"
},
"globals": {
"grecaptcha": true,
"localStorage": true,
"sessionStorage": true,
"FileReader": true,
"google": true
}
},
"semistandard": {
"globals": [
"it",
"test",
"expect",
"describe",
"grecaptcha",
"localStorage",
"sessionStorage",
"FileReader",
"google"
],
"ignore": [
"build"
]
},
"keywords": [
"react",
"dev kit"
],
"files": [
"dist"
],
"repository": "git://github.com/genediazjr/shookt",
"description": "A collection of reusable components for building react applications.",
"author": "Gene Diaz <genediazjr@gmail.com> (http://genediazjr.com)"
}