-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 3.1 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
83
84
85
86
87
88
89
90
91
92
{
"name": "sctools",
"version": "0.0.1",
"private": true,
"scripts": {
"cljs": "clojure -A:shadow-cljs -M:shadow-cljs",
"watch": "yarn cljs watch --debug :app :test",
"test": "yarn cljs compile :test",
"ci-build": "yarn cljs release :ci",
"ci-test": "karma start --single-run",
"compile-css": "yarn postcss --verbose static/styles/tailwind/tailwind-main.css --dir assets/app/sctools/static/dev/styles/",
"watch-css": "yarn compile-css --watch",
"purge-fa-css": "yarn postcss resources/app/sctools/static/fontawesome/css/all.min.css -o resources/app/sctools/static/fontawesome/css/fa.purged.css --env prod",
"release-js": "yarn cljs release :app; scripts/copy_release_files.sh",
"release-tailwind-css": "yarn postcss --verbose static/styles/tailwind/tailwind-main.css --dir resources/app/sctools/static/styles/",
"release-css": "yarn release-tailwind-css; yarn purge-fa-css",
"release": "yarn release-css; yarn release-js",
"restart-js": "goreman run restart js",
"start": "goreman start"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.1",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@testing-library/react": "^12.1.2",
"@types/debug": "^4.1.7",
"autoprefixer": "^10.4.0",
"create-react-class": "^15.7.0",
"cssnano": "^5.0.14",
"cypress": "^10.3.1",
"cypress-real-events": "^1.7.1",
"karma": "^6.3.9",
"karma-chrome-launcher": "^3.1.0",
"karma-cljs-test": "^0.1.0",
"marked": "^4.0.8",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^7.0.2",
"puppeteer": "13.0.0",
"shadow-cljs": "2.16.12",
"source-map-support": "^0.5.21",
"stylelint": "^14.1.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.5.4",
"ws": "^8.4.0"
},
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@js-joda/core": "4.3.1",
"@js-joda/locale_en-us": "4.4.0",
"@js-joda/timezone": "2.10.0",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "5.0.0-alpha.93",
"@mui/material": "^5.9.3",
"@mui/styles": "^5.9.3",
"@mui/x-date-pickers": "5.0.0-beta.4",
"@popperjs/core": "^2.11.0",
"highlight.js": "^11.3.1",
"idb": "^7.0.0",
"material-table": "^1.69.3",
"moment": "^2.29.1",
"platform": "1.3.6",
"react": "^17.0.2",
"react-devtools-core": "^4.22.1",
"react-dom": "^17.0.2",
"react-highlight.js": "1.0.7",
"react-refresh": "^0.11.0",
"react-router-dom": "^5.3.0",
"react-spring": "^9.3.2",
"react-transition-group": "^4.4.2",
"react-vega": "^7.4.4",
"stack-trace": "1.0.0-pre1",
"stacktrace-js": "2.0.2",
"vega": "5.21.0",
"vega-embed": "6.19.1",
"vega-lite": "5.1.1",
"vega-tooltip": "0.27.0",
"xregexp": "^5.1.0"
},
"resolutions": {
"vega-expression": "^5.0.0",
"vega-embed": "6.19.1",
"vega-event-selector": "^3.0.0",
"vega-util": "^1.17.0"
},
"@comment": {
"vega-embed": "6.20.0 not working with shadow, error: cannot find iterator.js"
}
}