-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.37 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
{
"name": "Demo-Project",
"version": "0.1.0",
"description": "Demo-project",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/damesek/deps-fullstack"
},
"author": "SB",
"license": "Rights to SB",
"main": "main.js",
"scripts": {
"shadow:watch": "shadow-cljs watch app",
"shadow:compile": "shadow-cljs compile app",
"shadow:release": "shadow-cljs release app",
"postcss:build": "cross-env TAILWIND_MODE=build postcss ./src/tailwind/tailwind.css -o ./src/resources/public/css/main.css --verbose",
"postcss:watch": "cross-env TAILWIND_MODE=watch postcss ./src/tailwind/tailwind.css -o ./src/resources/public/css/main.css --verbose -w",
"postcss:release": "cross-env NODE_ENV=production postcss ./src/tailwind/tailwind.css -o ./src/resources/public/css/main.css --verbose",
"html": "mkdir -p target && cp assets/index.html target/",
"serve": "yarn html && http-server target/",
"del": "rm -r target/*",
"build": "yarn release && yarn html && yarn serve",
"watch": "run-p -l *:watch",
"compile": "run-p -l *:compile",
"release": "run-s *:release"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"cssnano": "^5.0.6",
"framer-motion": "^5.5.5",
"http-server": "^0.12.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"react-flip-move": "^3.0.2",
"react-highlight.js": "^1.0.7",
"shadow-cljs": "^2.15.9",
"tailwindcss": "^3.0.6"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"@date-io/moment": "1.3.13",
"@headlessui/react": "^1.6.1",
"@js-joda/core": "^3.2.0",
"@js-joda/locale_en-us": "3.1.1",
"@js-joda/timezone": "2.5.0",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/pickers": "^3.3.10",
"@popperjs/core": "^2.4.4",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.0",
"@tailwindcss/typography": "^0.5.0",
"create-react-class": "^15.7.0",
"cross-env": "^7.0.3",
"highlight.js": "^11.1.0",
"moment": "^2.29.1",
"prism-react-renderer": "^1.3.5",
"prismjs": "^1.29.0",
"process": "0.11.10",
"react": "^18.1.0",
"react-big-calendar": "^0.33.5",
"react-day-picker": "^7.4.10",
"react-dom": "^17.0.2",
"react-flow-renderer": "^9.6.3",
"react-select": "^3.0.5",
"react-table-v6": "^6.8.6"
}
}