-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 2.01 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
51
52
{
"name": "app",
"author": "",
"license": "",
"version": "0.0.1",
"description": "",
"private": true,
"scripts": {
"client": "yarn shadow-cljs -A:dev watch :main",
"client/cljs-repl": "shadow-cljs -A:dev cljs-repl :main",
"client/clj-repl": "shadow-cljs -A:dev clj-repl",
"server": "clojure -A:dev -J-Dtrace -J-Dguardrails.enabled=true",
"start": "yarn run-p client server",
"clean": "rm -rf target resources/public/js resources/public/workspaces/js",
"client/release": "yarn shadow-cljs -A:shadow-cljs release main",
"server/release": "clojure -X:uberjar",
"release": "yarn && yarn clean && yarn client/release && yarn server/release",
"test": "clojure -M:test -d src/test",
"clojure-outdated": "clojure -M:outdated",
"npm-outdated": "yarn outdated",
"loc": "cloc src/main",
"docs/html": "asciidoctor -a allow-uri-read -o target/book.html -b html5 -r asciidoctor-diagram docs/book.adoc",
"docs/pdf": "asciidoctor-pdf -a allow-uri-read -o target/book.pdf -b pdf -r asciidoctor-diagram docs/book.adoc",
"docs": "yarn docs/pdf && yarn docs/html",
"docs/publish": "yarn docs && git checkout gh-pages && mv target/book.html index.html && git add index.html && git commit -m 'update docs' && git push && git checkout master"
},
"dependencies": {},
"devDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/base": "5.0.0-beta.24",
"@mui/icons-material": "^5.14.18",
"@mui/lab": "^5.0.0-alpha.153",
"@mui/material": "^5.14.18",
"@mui/styles": "^5.14.18",
"@mui/x-tree-view": "^6.17.0",
"fast-diff": "^1.3.0",
"highlight.js": "^11.8.0",
"json-beautify": "^1.1.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-cljs-test": "^0.1.0",
"marked": "^7.0.2",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-grid-layout": "^0.16.6",
"react-input-autosize": "^3.0.0",
"shadow-cljs": "^2.25.2",
"unicode-properties": "^1.4.1"
}
}