-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.5 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.5 KB
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": "@htv/ui-kit",
"version": "0.2.4",
"sideEffects": false,
"main": "./index.cjs.js",
"module": "./index.esm.js",
"peerDependencies": {
"babel-plugin-macros": "^3.0.1",
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^17.0.0",
"sass": "^1.32.4"
},
"babelMacros": {},
"dependencies": {
"babel-plugin-dev-expression": "^0.2.2",
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^17.0.1"
},
"scripts": {
"start": "npm run build:sass && npm run start:sb",
"build": "rollup -c rollup.config.js && rsync -a --exclude '*.stories.mdx' ./src/ ./dist && cp ./package.json ./dist/package.json",
"deploy": "npm run build && npm publish ./dist",
"start:sb": "start-storybook -p 6006",
"build:sb": "npm run build:sass && build-storybook --docs",
"prepublishOnly": "if ls ./package-lock.json 1> /dev/null 2>&1 ; then echo \"Publish denied. Please publish from ./dist instead\n\" && exit 1 ; else exit 0 ; fi",
"build:sass": "sass .storybook:.storybook",
"lint": "prettier --write \"**/*.(js|jsx|mdx|scss)\""
},
"keywords": [],
"author": "Hack The Valley",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/preset-react": "^7.13.13",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.2.9",
"babel-loader": "^8.2.2",
"babel-plugin-macros": "^3.0.1",
"css-loader": "^5.1.1",
"husky": "^4.3.8",
"postcss": "^8.2.13",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"react-is": "^17.0.1",
"rollup": "^2.45.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackthevalley/hack-the-ui.git"
},
"bugs": {
"url": "https://github.com/hackthevalley/hack-the-ui/issues"
},
"homepage": "https://github.com/hackthevalley/hack-the-ui#readme",
"description": "UI library for frontend applications"
}