-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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": "windshear",
"version": "1.1.0",
"description": "React hook for just-in-time component rendering, with first-class support for Tailwind CSS.",
"license": "BSD-3-Clause",
"author": "Nathan Allen <hello@nallenscott.com>",
"repository": "github:nallenscott/windshear",
"bugs": "https://github.com/nallenscott/windshear/issues",
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"react",
"hooks",
"react-hooks",
"media-queries",
"breakpoints",
"tailwind-css",
"just-in-time",
"viewport-dimensions",
"pinpoint-accuracy"
],
"scripts": {
"build": "babel src --out-dir dist",
"version": "npx auto-changelog -p -o CHANGELOG.md && git add CHANGELOG.md",
"prepublishOnly": "npm run build",
"watch": "nodemon --watch src --exec \"npm run build\"",
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@testing-library/react": "^14.2",
"auto-changelog": "^2.4.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mq-polyfill": "^1.1.8",
"nodemon": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"lodash": "^4.17.21",
"tailwindcss": "^3.4.1"
}
}