-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.46 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": "markdown",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack serve --config webpack.config.local.js",
"build": "webpack --env production",
"build:ci": "webpack --env production & webpack --env preprod & webpack --env staging && echo '\n\n🧱🚧🏗️👷👷♀️🧑🏭🛠️🔩⚒️🔨 Build Success!!\n\n'",
"start": "webpack serve --env development",
"pre-commit": "lint-staged",
"lint": "eslint ."
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"*.+(json|css|md)": [
"prettier --write"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@happeouikit/alerts": "latest",
"@happeouikit/avatar": "latest",
"@happeouikit/banners": "latest",
"@happeouikit/buttons": "latest",
"@happeouikit/card": "latest",
"@happeouikit/colors": "latest",
"@happeouikit/emojis": "latest",
"@happeouikit/file-icon": "latest",
"@happeouikit/file-picker": "latest",
"@happeouikit/form-elements": "latest",
"@happeouikit/icons": "latest",
"@happeouikit/image-grid": "latest",
"@happeouikit/layout": "latest",
"@happeouikit/list": "latest",
"@happeouikit/loaders": "latest",
"@happeouikit/menus": "latest",
"@happeouikit/modals": "latest",
"@happeouikit/navigation": "latest",
"@happeouikit/theme": "latest",
"@happeouikit/toast": "latest",
"@happeouikit/tooltip": "latest",
"@happeouikit/typography": "latest",
"babel-loader": "^8.2.2",
"css-loader": "^4.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^4.5.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"react": "^16.9.0",
"react-dom": "^17.0.2",
"styled-components": "^4.4.1",
"ts-loader": "^9.2.3",
"webpack": "^4.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"@happeouikit/alerts": "latest",
"@happeouikit/avatar": "latest",
"@happeouikit/banners": "latest",
"@happeouikit/buttons": "latest",
"@happeouikit/card": "latest",
"@happeouikit/colors": "latest",
"@happeouikit/emojis": "latest",
"@happeouikit/file-icon": "latest",
"@happeouikit/file-picker": "latest",
"@happeouikit/form-elements": "latest",
"@happeouikit/icons": "latest",
"@happeouikit/image-grid": "latest",
"@happeouikit/layout": "latest",
"@happeouikit/list": "latest",
"@happeouikit/loaders": "latest",
"@happeouikit/menus": "latest",
"@happeouikit/modals": "latest",
"@happeouikit/navigation": "latest",
"@happeouikit/theme": "latest",
"@happeouikit/toast": "latest",
"@happeouikit/tooltip": "latest",
"@happeouikit/typography": "latest",
"react": "^16.9.0",
"react-dom": "^17.0.2",
"styled-components": "^4.4.1"
},
"dependencies": {
"@happeo/widget-sdk": "^0.2.0",
"react-markdown": "^8.0.3",
"style-loader": "^2.0.0"
},
"happeo": {
"privateKeyPath": "\nPlease set the path of your ssh private key here. \nIt will be used to encrypt thee bundle during publish",
"slug": "markdownpage-ivl0pnlu4mhpjlcydicf",
"name": "markdown",
"type": "React"
}
}