-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "nextwarm",
"version": "0.0.11",
"description": "nextjs utility",
"main": "./dist/index.cjs.js",
"types": "./types/src/index.d.ts",
"module": "./dist/index.es.js",
"files": [
"dist",
"types",
"*.js",
"*.js.map"
],
"repository": "[email protected]:warmbyte/nextwarm.git",
"author": "adeyahya <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn build:module && yarn build:types",
"build:module": "ts-node scripts/build.ts",
"build:types": "rimraf ./types && tsc --project ./tsconfig.types.json && replace 'import type' 'import' ./types -r --silent && replace 'export type' 'export' ./types -r --silent",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"@types/gtag.js": "^0.0.4",
"@types/jest": "^26.0.20",
"@types/next": "^9.0.0",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"esbuild": "^0.8.54",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"replace": "^1.2.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "4.0"
},
"lint-staged": {
"**/*.{ts,tsx}": "npm run lint:fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"react-use": "^17.1.1"
},
"peerDependencies": {
"react": ">=16.0.0"
}
}