This repository was archived by the owner on Apr 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
55 lines (55 loc) · 2.23 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
{
"name": "oc-web",
"version": "0.0.1",
"private": true,
"scripts": {
"release": "npm ci && npm run scss:build && npx shadow-cljs release webapp",
"dev:build": "npm run scss:build & npm run cljs:build",
"dev:watch": "npm run scss:watch & npm run cljs:watch",
"dev:clean": "npm run scss:clean & npm run cljs:clean",
"scss:build": "npm run css:copyAssets && node-sass-chokidar scss/app.main.scss public/css/app.main.css",
"scss:watch": "npm run css:copyAssets && node-sass-chokidar scss/app.main.scss public/css/app.main.css --watch",
"css:copyAssets": "bin/copy_assets",
"scss:clean": "rm -fd public/css/app.main.css",
"cljs:build": "npx shadow-cljs compile webapp",
"cljs:watch": "npx shadow-cljs watch webapp",
"cljs:clean-packages": "npm run cljs:clean && rm -dfR package-lock.json && npm install",
"cljs:clean": "rm -dfR node_modules/ public/js/* target/ .shadow-cljs/"
},
"devDependencies": {
"hosted-git-info": ">=2.8.9",
"node-sass-chokidar": "^1.5.0",
"nodemon": "^2.0.4",
"normalize.scss": "^0.1.0",
"shadow-cljs": "^2.12.5"
},
"dependencies": {
"@bago2k4/emoji-autocomplete": "github:bago2k4/emoji-autocomplete#56e86be129c1094bb9b343c28f3834c610fed1de",
"@bago2k4/medium-editor-filedragging": "github:bago2k4/medium-editor-filedragging#mainline",
"@bago2k4/medium-editor-media-picker": "github:bago2k4/medium-editor-media-picker",
"@bago2k4/react-giphy-selector": "github:bago2k4/react-giphy-selector#fix-ts",
"@open-company/medium-editor-extentions": "github:open-company/medium-editor-extentions#mainline",
"@rangy/core": "^2.1.0",
"@rangy/selectionsaverestore": "^2.1.0",
"@sentry/browser": "^6.12.0",
"@sentry/tracing": "^6.12.0",
"@sentry/utils": "^6.12.0",
"clipboard": "2.0.6",
"create-react-class": "^15.7.0",
"emoji-mart": "^3.0.0",
"emojione": "4.5.0",
"filestack-js": "^3.23.1",
"hammerjs": "2.0.8",
"ini": "^1.3.8",
"jwt-decode": "2.2.0",
"localforage": "1.5.3",
"lodash": ">=4.17.21",
"medium-editor": "5.23.3",
"moment-timezone": "0.5.31",
"react": "16.11.0",
"react-color": "^2.18.1",
"react-dom": "16.11.0",
"react-virtualized": "^9.22.2",
"xregexp": "4.3.0"
}
}