-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.71 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
{
"author": "Icaro Motta",
"license": "MIT",
"name": "panda-streamer",
"version": "1.0.0",
"private": true,
"scripts": {
"audit": "npm audit --omit dev",
"blockchain:local": "ganache-cli --accounts 5 --blockTime 0 --defaultBalanceEther 1000 --deterministic --mnemonic 'test test test test test test test test test test test junk' --port 8545 --hostname '127.0.0.1' --db .cache/ganache/",
"clean": "rm -rf .shadow-cljs/ build/public/css/ build/public/js/ .cache/ .log/",
"compile": "concurrently npm:web:compile npm:css:compile",
"css:compile": "postcss src/main/resources/css/**/*.css --dir build/public/css/",
"css:release": "postcss src/main/resources/css/**/*.css --env production --dir build/public/css/",
"css:watch": "postcss src/main/resources/css/**/*.css --watch --dir build/public/css/",
"outdated": "concurrently 'clojure -M:outdated' 'npm outdated'",
"release": "concurrently npm:web:release npm:css:release",
"watch": "concurrently npm:blockchain:local npm:web:watch npm:css:watch",
"web:compile": "shadow-cljs compile web",
"web:release": "shadow-cljs release web",
"web:watch": "shadow-cljs watch web"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"concurrently": "^7.3.0",
"cssnano": "^5.0.6",
"dagre": "0.8.5",
"dotenv": "^10.0.0",
"firebase-tools": "^11.3.0",
"ganache-cli": "^6.12.2",
"postcss-cli": "^8.3.1",
"prettier": "^2.3.2",
"react-flow-renderer": "9.6.3",
"shadow-cljs": "2.19.6",
"tailwindcss": "^3.1.6"
},
"dependencies": {
"@metamask/jazzicon": "^2.0.0",
"ethers": "^5.3.0",
"highlight.js": "10.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"readable-stream": "^2.3.7"
}
}