forked from artiva-protocol/baseline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.35 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
{
"name": "lens",
"private": true,
"version": "1.0.0",
"main": "./dist/index.js",
"type": "module",
"license": "MIT",
"scripts": {
"clean": "rm -rf ./dist",
"watch:css": "tailwindcss -i ./src/index.css -o ./dist/index.css --watch",
"build:css": "tailwindcss -i ./src/index.css -o ./dist/index.css",
"dev": "concurrently \"webpack server\" \"yarn watch:css\" ",
"typecheck": "tsc --noEmit",
"build": "yarn clean && webpack --mode production && yarn build:css",
"publish:bundlr": "source .env.local && yarn build && bundlr upload-dir ./dist -c matic -h $BUNDLR_NODE -w $BUNDLR_PRIVATE_KEY",
"fund:bundlr": "source .env.local && bundlr fund 100000000000000000 -c matic -h $BUNDLR_NODE -w $BUNDLR_PRIVATE_KEY"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@artiva/shared": "^0.2.6",
"@heroicons/react": "^2.0.13",
"@types/next": "^9.0.0",
"@types/react": "17.0.39",
"@zoralabs/nft-hooks": "^1.1.7",
"archiver": "^5.3.1",
"concurrently": "^7.2.2",
"esbuild-loader": "^2.19.0",
"ethers": "^5.7.1",
"process": "^0.11.10",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.4",
"wagmi": "^0.6.7",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0"
}
}