-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.56 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
{
"name": "front-helix",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"ci:karma-make": "npx msw init resources/front/test",
"ci:tests": "npm run ci:karma-make && npx shadow-cljs compile ci-tests && npx karma start --single-run",
"shadow:release": "npx shadow-cljs release app",
"postcss:build": "npx cross-env TAILWIND_MODE=build postcss src/front/css/tailwind.css -o ./resources/front/public/assets/css/output.css --verbose",
"postcss:watch": "npx cross-env TAILWIND_MODE=watch postcss src/front/css/tailwind.css -o ./resources/front/public/assets/css/output.css --verbose -w",
"postcss:release": "npx cross-env NODE_ENV=production postcss src/front/css/tailwind.css -o ./resources/front/public/assets/css/output.css --verbose",
"app:watch": "npx shadow-cljs watch app",
"watch": "run-p -l *:watch",
"release": "run-s shadow:release",
"repl": "npx shadow-cljs clj-repl"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cljazz/moclojer-app.git"
},
"bugs": {
"url": "https://www.notion.so/cljazz/66f04ee638f74505aabf92f5f5b8a3b7?v=b4df8a44003045cf952aa435ab6a87a0"
},
"homepage": "https://github.com/cljazz/moclojer-app",
"devDependencies": {
"@testing-library/react": "^14.0.0",
"autoprefixer": "^10.4.14",
"cssnano": "^6.0.1",
"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.24",
"postcss-cli": "^10.1.0",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^8.5.0",
"shadow-cljs": "^2.23.3",
"tailwindcss": "^3.3.2"
},
"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": "^20.7.2",
"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",
"use-sync-external-store": "1.2.0"
},
"msw": {
"workerDirectory": "resources/front/test"
}
}