-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·83 lines (83 loc) · 2.71 KB
/
package.json
File metadata and controls
executable file
·83 lines (83 loc) · 2.71 KB
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
{
"name": "@media-ui/media-module",
"version": "1.0.0",
"license": "GNU GPLv3",
"private": true,
"dependencies": {
"@apollo/client": "~3.4.17",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.13",
"@friendsofreactjs/react-css-themr": "^4.1.0",
"@media-ui/core": "*",
"@media-ui/feature-asset-usage": "*",
"@media-ui/feature-clipboard": "*",
"@media-ui/feature-concurrent-editing": "*",
"@media-ui/feature-similar-assets": "*",
"@media-ui/feature-asset-preview": "*",
"@neos-project/react-ui-components": "^5.3.4",
"apollo-upload-client": "^14.1.3",
"classnames": "^2.2.6",
"graphql": "^15.5.0",
"jss-plugin-cache": "^10.5.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.omit": "^4.5.0",
"lodash.throttle": "^4.1.1",
"media-type": "^0.3.1",
"moment": "^2.29.1",
"plow-js": "^2.2.0",
"raf": "^3.4.1",
"react": "^17.0.1",
"react-close-on-escape": "^3.0.0",
"react-collapse": "^2.4.1",
"react-datetime": "^2.16.3",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "^16.14.0",
"react-dropzone": "^11.2.4",
"react-height": "^3.0.1",
"react-image-lightbox": "^5.1.1",
"react-jss": "^10.5.0",
"react-keydown": "^1.9.12",
"react-modal": "^3.12.1",
"react-motion": "^0.5.2",
"react-portal": "^4.2.1",
"react-redux": "^5.1.2",
"react-textarea-autosize": "^5.2.1",
"recoil": "^0.2.0"
},
"devDependencies": {
"@babel/compat-data": "^7.10.1",
"@babel/core": "^7.10.2",
"@types/apollo-upload-client": "^14.1.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-dropzone": "^5.1.0",
"@types/recoil": "^0.0.1",
"apollo-server-express": "^2.19.0",
"babel-types": "^6.26.0",
"node-sass": "^5.0.0",
"parcel-bundler": "^1.12.4",
"patch-package": "^6.2.2",
"postcss-custom-properties": "^9.2.0",
"postcss-modules": "^1.5.0",
"postinstall-postinstall": "^2.1.0",
"react-hot-loader": "^4.13.0",
"testcafe": "^1.10.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"alias": {
"@neos-project/react-ui-components/*": "@neos-project/react-ui-components/lib-esm/*"
},
"browserslist": [
"defaults and > 1% and not ie <= 11"
],
"scripts": {
"watch": "parcel watch src/index.tsx --public-url . --out-dir ../../../Public/Assets -o main.bundle.js",
"build": "parcel build src/index.tsx --public-url . --out-dir ../../../Public/Assets -o main.bundle.js"
}
}