-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.99 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
{
"name": "@chewhx/use-todo",
"version": "0.1.5",
"description": "Hook for React todos state",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "run-s delete-dist build-dist",
"build-dist": "rollup -c",
"build-storybook": "build-storybook -o docs",
"docs": "start-storybook -p 6006",
"delete-dist": "rimraf dist",
"check-publish": "npm publish --dry-run",
"format": "prettier src -w"
},
"repository": {
"type": "git",
"url": "https://github.com/chewhx/use-todo.git"
},
"homepage": "https://chewhx.github.io/use-todo/",
"keywords": [
"react",
"productivity",
"todolist",
"todoapp",
"react-hooks",
"reacthooks",
"usetodo",
"usetodos"
],
"author": "Chew Han Xiang <hello@chewhx.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.9",
"@emotion/react": "^11.10.4",
"@mantine/core": "^5.2.4",
"@mantine/hooks": "^5.2.4",
"@mantine/prism": "^5.2.4",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-typescript": "^8.3.2",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.11",
"@types/react": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"babel-loader": "^8.2.5",
"eslint": "^8.14.0",
"eslint-plugin-react": "^7.29.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"random-movies": "^1.0.1",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"tabler-icons-react": "^1.54.0",
"typescript": "^4.6.3"
},
"dependencies": {
"nanoid": "^3.3.4"
},
"peerDependencies": {
"react": ">=17.0.2"
}
}