-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
23 lines (23 loc) · 847 Bytes
/
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
{
"name": "tryclojure",
"version": "1.0.0",
"description": "Try Clojure in a web REPL!",
"author": "Elia Scotto [@elias94]",
"homepage": "https://github.com/elias94/tryclojure",
"scripts": {
"start": "npx shadow-cljs -d cider/cider-nrepl:0.27.4 watch :app",
"styles-watch": "npx tailwindcss -i src/styles/styles.css -o resources/public/css/styles.css --watch",
"styles": "npx tailwindcss -i src/styles/styles.css -o resources/public/css/styles.css",
"clean": "rm -rf /resources/public/js /resources/public/css",
"build": "npm run clean && npx shadow-cljs release :app && npm run styles",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"shadow-cljs": "^2.17.3"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss": "^3.0.23"
}
}