-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.29 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
{
"name": "thoarrow-ui",
"version": "1.0.0",
"description": "React component libary with styled-component",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"postinstall": "husky install",
"build:rollup": "rollup -c",
"build": "tsc -p .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build-docs": "build-storybook --docs -o docs-build",
"prepare": "husky install",
"clear": "rm -rf ./dist ./coverage ./badges/*",
"preCommit": "npm run clear && npm run test:badges && git add .",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"test:update": "jest -u",
"test:badges": "npm run test:coverage && node ./scripts/make-badges.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thoarrown/thoarrow-ui.git"
},
"keywords": [
"react",
"styled-component",
"lib-component",
"lib-ui"
],
"author": "thoarrown@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/thoarrown/thoarrow-ui/issues"
},
"homepage": "https://github.com/thoarrown/thoarrow-ui#readme",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.39",
"@types/styled-components": "^5.1.23",
"babel-loader": "^8.2.3",
"badge-maker": "^3.3.1",
"husky": "^7.0.0",
"jest": "^27.5.1",
"jest-styled-components": "^7.0.8",
"react": "^17.0.2",
"rollup": "^2.67.3",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"styled-components": "^5.3.3",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"dependencies": {
"react-dom": "^17.0.2"
}
}