-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "bagels",
"version": "0.1.17",
"description": "",
"type": "module",
"files": [
"./public/**",
"./server/**",
"./src/**",
"./network/**",
"./esbuildConfig.js",
"./utils.js"
],
"scripts": {
"tailwind": "npx --silent tailwindcss -i ./src/styles/globals.css -o ./public/build/output.css --watch",
"minifyTailwind": "npx --silent tailwindcss -i ./src/styles/globals.css -o ./public/build/output.css --minify",
"network": "node ./network/startNetwork.js",
"devNetwork": "node ./network/startNetwork.js",
"siteEsBuild": "node esbuildConfig.js",
"site": "npm-run-all --parallel siteEsBuild tailwind",
"dev": "npm-run-all --parallel devNetwork tailwind"
},
"bin": {
"bagels": "./network/startNetwork.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.1",
"bagels-solc-js": "^0.8.1",
"chalk": "^5.2.0",
"chokidar": "^3.5.3",
"cors": "^2.8.5",
"esbuild": "^0.17.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"ganache": "^7.7.5",
"node-fetch": "^3.3.0",
"open": "^8.4.0",
"posthog-node": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semver": "^7.3.8",
"tailwindcss": "^3.2.4",
"wouter": "2.9.1"
}
}