-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.56 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
{
"name": "teamplate",
"version": "0.1.0",
"private": true,
"scripts": {
"watch:typescript": "babel src/react --out-dir src/ecmascript --watch --extensions .ts,.tsx",
"watch:css": "postcss src/css/app.css -w --dir public/app --verbose",
"watch:clojure": "shadow-cljs watch app",
"release:css": "postcss src/css/app.css --dir public/app",
"release:clojure": "shadow-cljs release app",
"start": "conc -c auto npm:watch:*",
"release": "conc -c auto npm:release:* && npm run bundle:optimize",
"bundle": "esbuild --bundle public/app/lib.js --outfile=public/app/lib.bundle.js",
"watch:bundle": "npm run bundle -- --watch",
"bundle:optimize": "npm run bundle -- --analyze --metafile=.bundle.meta.json --define:NODE_ENV=production --minify"
},
"dependencies": {
"@mantine/core": "^7.4.2",
"@mantine/hooks": "^7.4.2",
"@tanstack/react-query": "^5.40.1",
"esbuild": "^0.20.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-refresh": "^0.13.0",
"viem": "^2.13.7",
"wagmi": "^2.9.10"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@testing-library/react": "^14.1.2",
"babel": "^6.23.0",
"concurrently": "^8.2.2",
"cssnano": "^6.0.3",
"global-jsdom": "9.0.1",
"jsdom": "22.0.0",
"jsdom-global": "3.0.2",
"node-polyfill-webpack-plugin": "^4.0.0",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.0",
"postcss-preset-mantine": "^1.12.3",
"postcss-simple-vars": "^7.0.1",
"shadow-cljs": "^2.27.1"
}
}