-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.02 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
102
103
104
105
106
107
{
"name": "default-hooks",
"version": "0.0.38",
"description": "The most basic hooks needed to produce a react application",
"main": "lib/index.js",
"module": "esm/index.js",
"sideEffects": false,
"files": [
"lib/",
"esm/"
],
"keywords": [
"react",
"hooks",
"utils",
"default"
],
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"start": "yarn storybook",
"lint": "eslint \"{src,tests,stories}/**/*.{ts,tsx}\"",
"lint:fix": "yarn lint --fix",
"lint:types": "tsc --noEmit",
"build:cjs": "tsc",
"build:es": "tsc -m esNext --outDir esm",
"build": "yarn build:cjs && yarn build:es",
"clean": "rimraf lib storybook-static esm",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"storybook:clean": "rimraf storybook-static",
"release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint && yarn clean && yarn build && yarn test"
}
},
"author": "pine-lab",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bigpicture-kr/default-hooks"
},
"homepage": "http://default-hooks.bigpicture.team/",
"bugs": {
"url": "https://github.com/bigpicture-kr/default-hooks/issues"
},
"dependencies": {
"next": "^13.1.2",
"styled-components": "^5.3.5",
"tslib": "^2.1.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@storybook/addon-actions": "6.4.9",
"@storybook/addon-knobs": "6.2.9",
"@storybook/addon-notes": "5.3.21",
"@storybook/addon-options": "5.3.21",
"@storybook/react": "6.4.9",
"@types/axios": "^0.14.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"axios": "^0.27.2",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.3",
"babel-plugin-dynamic-import-node": "2.3.3",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "4.3.0",
"fork-ts-checker-webpack-plugin": "6.5.0",
"husky": "7.0.4",
"lint-staged": "12.1.2",
"markdown-loader": "6.0.0",
"prettier": "2.3.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"ts-loader": "8.2.0",
"ts-node": "10.4.0",
"typescript": "4.9.4"
},
"lint-staged": {
"src/**/**/*.{ts,tsx}": [
"eslint"
]
}
}