-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 824 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 824 Bytes
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": "hsx",
"version": "1.0.0",
"description": "HSX is a ClojureScript library for writing React components using Hiccup syntax.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"compile-cljs": "npx shadow-cljs compile test",
"watch-examples": "npx shadow-cljs watch examples",
"test": "jest"
},
"author": "Factor House",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"shadow-cljs": "^2.28.20"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}