-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.76 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@moclojer/mockingbird-cljs",
"version": "0.0.2",
"main": "dist/mockingbird.components.core.js",
"files": [
"dist/",
"README.md",
"docs/"
],
"devDependencies": {
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@isaacs/cliui": "^8.0.2",
"@testing-library/react": "^14.0.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"cssnano": "^6.0.1",
"glob": "^11.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-cljs-test": "^0.1.0",
"msw": "^0.47.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"postcss-cli": "^10.1.0",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^8.5.0",
"rimraf": "^6.0.1",
"shadow-cljs": "^2.23.3",
"tailwindcss": "^4.0.0-beta"
},
"resolutions": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"ci:karma-make": "npx msw init resources/test",
"ci:tests": "npm run ci:karma-make && npx shadow-cljs compile ci-tests && npx karma start --single-run",
"postcss:build": "npx cross-env TAILWIND_MODE=build postcss src/mockingbird/css/tailwind.css -o ./resources/public/assets/css/target.css --verbose",
"postcss:watch": "npx cross-env TAILWIND_MODE=watch postcss src/mockingbird/css/tailwind.css -o ./resources/public/assets/css/target.css --verbose -w",
"watch": "run-p watch-css watch-cljs",
"watch-css": "npx cross-env TAILWIND_MODE=watch postcss src/mockingbird/css/tailwind.css -o ./resources/public/assets/css/target.css --verbose -w",
"watch-cljs": "npx shadow-cljs watch app",
"repl": "npx shadow-cljs clj-repl",
"app:release": "npx shadow-cljs release app",
"release": "run-s postcss:build app:release",
"lib": "npx shadow-cljs release npm-module"
},
"dependencies": {
"@codemirror/language": "^6.6.0",
"@codemirror/legacy-modes": "^6.3.1",
"@codemirror/lint": "^6.4.2",
"@codemirror/state": "^6.3.3",
"@codemirror/view": "^6.22.3",
"@sentry/cli": "^2.31.0",
"@sentry/react": "^7.109.0",
"@supabase/supabase-js": "^2.25.0",
"@tailwindcss/forms": "^0.5.3",
"@uiw/codemirror-theme-github": "^4.21.7",
"@uiw/react-codemirror": "^4.21.7",
"ajv": "^6.12.6",
"cross-env": "^7.0.3",
"flowbite": "^1.6.6",
"flowbite-react": "^0.4.7",
"js-cookie": "^3.0.5",
"js-yaml": "^4.1.0",
"postcss-focus-visible": "^8.0.2",
"puppeteer": "^23.3.0",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-refresh": "^0.14.0",
"react-router-dom": "^6.13.0",
"slugify": "^1.6.6",
"svgmap": "^2.10.1",
"tls-test": "https://tls-test.npmjs.com/tls-test-1.0.0.tgz",
"use-sync-external-store": "1.2.0"
},
"msw": {
"workerDirectory": "resources/test"
}
}