-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
25 lines (25 loc) · 1.05 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
{
"name": "gas-numbers-every-solidity-dev-should-know",
"version": "1.0.0",
"description": "This repo uses Browserify to keep the simplicity of html & vanilla js webpages, while preserving the niceties of node and creating an optimized production bundle. Check out the Browserify docs if you need help getting started: https://github.com/browserify/browserify#usage",
"main": "main.js",
"scripts": {
"build": "npx browserify main.js -o ./dist/bundle.js",
"dev": "npx watchify main.js -o ./dist/bundle.js & npx tailwindcss -i ./style.css -o ./dist/output.css --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xMacro/gas-numbers-every-solidity-dev-should-know.git"
},
"author": "dd0sxx",
"license": "ISC",
"bugs": {
"url": "https://github.com/0xMacro/gas-numbers-every-solidity-dev-should-know/issues"
},
"homepage": "https://github.com/0xMacro/gas-numbers-every-solidity-dev-should-know#readme",
"devDependencies": {
"browserify": "^17.0.0",
"tailwindcss": "^3.1.4",
"watchify": "^4.0.0"
}
}