-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 936 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 936 Bytes
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
{
"name": "button-component-master",
"version": "1.0.0",
"description": "soiloui's button component",
"main": "index.html",
"browserslist": ">0.75%, last 2 versions, not OperaMini all, not dead",
"scripts": {
"start": "snowpack dev",
"build": "snowpack build && fsutil file createnew docs/.nojekyll 0",
"deploy": "snowpack build && git add docs && git commit -m deploy && git push -u origin main"
},
"author": "soiloui",
"license": "ISC",
"devDependencies": {
"@snowpack/plugin-typescript": "^1.2.1",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"@types/styled-components": "^5.1.9",
"snowpack": "^3.3.7",
"typescript": "^4.2.4"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"snowpack-plugin-baseurl-handler": "0.0.3",
"styled-components": "^5.3.0"
}
}