-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.92 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": "@hacksc/ui-kit",
"description": "The official HackSC UI kit",
"license": "MIT",
"version": "0.0.0-development",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@commitlint/config-conventional": "^17.4.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"fuse.js": "^6.6.2",
"react": "^18.2.0",
"react-calendar": "^4.0.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"styled-components": "^5.3.9"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/react": "^6.5.16",
"@types/react-calendar": "^3.9.0",
"@types/styled-components": "^5.1.26",
"babel-loader": "^9.1.2",
"commitizen": "^4.3.0",
"commitlint": "^17.5.1",
"css-loader": "^6.7.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"semantic-release": "^21.0.1",
"style-loader": "^3.3.2",
"url-loader": "^4.1.1"
},
"peerDependencies": {
"fuse.js": "^6.6.2",
"react": "^18.2.0",
"react-calendar": "^4.0.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"styled-components": "^5.3.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}