-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.81 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
53
{
"name": "clojure-saas-boilerplate",
"version": "1.0.0",
"author": "Talentech",
"description": "This is a boilerplate for Clojure SaaS applications. It is based on: aws, reitit, psql, reagent, shadow-cljs, re-frame",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"shadow:watch": "shadow-cljs watch app",
"shadow:release": "shadow-cljs release app",
"devcards:watch": "shadow-cljs watch devcards",
"postcss:build": "cross-env TAILWIND_MODE=build postcss resources/css/* --dir resources/public/assets/css --verbose",
"postcss:watch": "cross-env TAILWIND_MODE=watch postcss resources/css/* --dir resources/public/assets/css --verbose -w",
"postcss:release": "cross-env NODE_ENV=production postcss resources/css/* --dir resources/public/assets/css --verbose",
"dev": "run-p -l *:watch",
"release": "run-s *:release",
"devcards": "run-p -l devcards:watch postcss:watch"
},
"repository": {
"type": "git",
"url": "https://git.jetbrains.space/talentech/main/clojure-saas-boilerplate.git"
},
"keywords": [],
"license": "ISC",
"dependencies": {
"@headlessui/react": "^1.7.9",
"@heroicons/react": "^2.0.14",
"@radix-ui/react-slot": "^1.0.2",
"autoprefixer": "^10.4.13",
"create-react-class": "15.6.3",
"lucide-react": "^0.252.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"shadow-cljs": "^2.20.20",
"tailwind-merge": "^1.13.2",
"tailwindcss-animate": "^1.0.6"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"cross-env": "^7.0.3",
"cssnano": "^5.1.14",
"highlight.js": "^10.6.0",
"marked": "4.0.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"tailwindcss": "3.3.2"
}
}