-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
46 lines (46 loc) · 2 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": "datalog-console",
"version": "0.3.2",
"description": "Administration UI for Datalog databases.",
"main": "index.js",
"repository": "https://github.com/homebaseio/datalog-console.git",
"author": "Chris Smothers <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "yarn dev-chrome",
"dev-chrome": "shadow-cljs watch chrome-devtool chrome --config-merge '{:compiler-options {:source-map-inline true}}' workspaces",
"repl-background": "shadow-cljs cljs-repl chrome",
"repl-panel": "shadow-cljs cljs-repl chrome-devtool",
"build:tailwind:dev": "postcss public/css/styles.css -o public/css/gen-styles.css; postcss public/css/styles.css -o shells/chrome/css/gen-styles.css",
"build:tailwind:dev:watch": "postcss public/css/styles.css -o public/css/gen-styles.css -w",
"build:tailwind": "NODE_ENV=production postcss public/css/styles.css -o public/css/gen-styles.css; NODE_ENV=production postcss public/css/styles.css -o shells/chrome/css/gen-styles.css",
"dev-workspaces": "shadow-cljs watch workspaces",
"build:workspaces": "shadow-cljs release workspaces",
"build:chrome": "rm shells/chrome/manifest.json ; rm -rf shells/chrome/out ; rm -rf shells/chrome/js ; shadow-cljs release chrome chrome-devtool",
"build": "yarn build:tailwind ; yarn build:workspaces ; yarn build:chrome",
"build:clean": "rm -rf .shadow-cljs; rm -rf node_modules; rm -rf .cpcache; rm -rf .calva; rm -rf shells/chrome/js; rm -rf shells/chrome/out; rm -rf public/js"
},
"devDependencies": {
"autoprefixer": "^10.2.5",
"postcss": "^8.2.8",
"postcss-cli": "^8.3.1",
"shadow-cljs": "^2.12.4",
"tailwindcss": "^2.0.3"
},
"dependencies": {
"@tailwindcss/line-clamp": "^0.2.0",
"highlight.js": "^9.12.0",
"react": "^17.0.1",
"react-dom": "17.0.1",
"react-grid-layout": "^0.16.6",
"react-icons": "^2.2.7",
"reakit": "^0.11.1"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}