This repository has been archived by the owner on Mar 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
executable file
·118 lines (118 loc) · 4.09 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"lint": "tsc --noEmit && eslint --ext .ts,.tsx --fix"
},
"dependencies": {
"@grafikart/drop-files-element": "^1.0.9",
"@inertiajs/inertia": "^0.1.7",
"@inertiajs/inertia-react": "^0.1.4",
"@sentry/browser": "^5.15.5",
"@tailwindcss/custom-forms": "^0.2.1",
"@tailwindcss/ui": "^0.1.3",
"alpinejs": "^2.0.2",
"axios": "^0.19",
"classnames": "^2.2.6",
"date-fns": "^2.10.0",
"disqus-react": "^1.0.9",
"filepond": "^4.12.0",
"filepond-plugin-image-exif-orientation": "^1.0.6",
"filepond-plugin-image-preview": "^4.6.1",
"flatpickr": "^4.6.3",
"hex-to-rgba": "latest",
"highlight.js": "^9.18.1",
"laravel-mix": "^4.0.7",
"laravel-mix-purgecss": "^4.2.0",
"laravel-mix-tailwind": "^0.1.0",
"lodash": "^4.17.13",
"moment": "^2.25.3",
"prismjs": "^1.19.0",
"quill": "1.3.6",
"react": "^16.12.0",
"react-app-polyfill": "^1.0.6",
"react-content-loader": "^5.0.2",
"react-country-region-selector": "^2.0.0",
"react-datepicker": "^2.13.0",
"react-dom": "^16.12.0",
"react-dropzone": "^10.2.2",
"react-filepond": "^7.0.1",
"react-google-recaptcha-v3": "^1.4.1",
"react-helmet": "^5.2.1",
"react-hook-form": "^5.1.3",
"react-markdown": "^4.3.1",
"react-mde": "^8.0.2",
"react-quill": "^1.3.3",
"react-slick": "^0.25.2",
"react-spring": "^8.0.27",
"react-transition-group": "^4.3.0",
"react-use": "^13.20.0",
"showdown": "^1.9.1",
"slick-carousel": "^1.8.1",
"tailwindcss": "^1.4.0",
"tailwindcss-plugins": "^0.3.0",
"tailwindcss-spinner": "^1.0.0",
"timeago-react": "^3.0.0",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@types/classnames": "^2.2.9",
"@types/flatpickr": "^3.1.2",
"@types/highlight.js": "^9.12.3",
"@types/lodash": "^4.14.148",
"@types/moment": "^2.13.0",
"@types/node": "^12.12.14",
"@types/prismjs": "^1.16.0",
"@types/react": "^16.9.11",
"@types/react-datepicker": "^2.11.0",
"@types/react-dom": "^16.9.4",
"@types/react-dropzone": "^5.1.0",
"@types/react-filepond": "^5.0.5",
"@types/react-helmet": "^5.0.15",
"@types/react-transition-group": "^4.2.4",
"@types/showdown": "^1.9.3",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"babel-plugin-prismjs": "^2.0.1",
"cross-env": "^5.1",
"eslint": "^6.7.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.4",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"resolve-url-loader": "^2.3.1",
"sass": "^1.15.2",
"sass-loader": "^7.1.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"vue-template-compiler": "^2.6.10"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}