-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
31 lines (31 loc) · 981 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
24
25
26
27
28
29
30
31
{
"name": "nota",
"version": "1.0.0",
"description": "Static Markdown Blog/Site using Fulcro & Pathom with no backend",
"scripts": {
"css:watch": "sass --watch src/css/nota.css:resources/public/css/nota.min.css",
"css:release": "sass src/css/nota.css:resources/public/css/nota.min.css --style=compressed",
"js:watch": "shadow-cljs watch main",
"js:release": "shadow-cljs release main",
"ci-tests": "shadow-cljs compile ci-tests && karma start --single-run",
"watch:tests": "shadow-cljs watch tests",
"watch": "run-p -l *:watch",
"release": "run-s *:release"
},
"author": "",
"license": "ISC",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.7",
"remark-gfm": "^3.0.1",
"shadow-cljs": "^2.28.20"
},
"devDependencies": {
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-cljs-test": "^0.1.0",
"npm-run-all": "^4.1.5",
"sass": "^1.83.0"
}
}