-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "codem-silverstripe-damn-fine-uploader",
"version": "1.0.0",
"description": "A Damn Fine Uploader for Silverstripe 4",
"license": "MIT",
"author": "James Ellis",
"engines": {
"node": ">= 6.x"
},
"scripts": {
"build": "yarn && NODE_ENV=production webpack --bail --progress",
"dev": "NODE_ENV=development webpack --progress",
"watch": "yarn && NODE_ENV=development webpack --watch --progress",
"css": "yarn && WEBPACK_CHILD=css webpack --bail --progress",
"lock": "npm-shrinkwrap --dev",
"lint": "eslint client/src && sass-lint -v client/src"
},
"devDependencies": {
"@babel/core": "^7.15",
"@babel/plugin-transform-arrow-functions": "^7.14",
"@babel/plugin-transform-runtime": "^7.15",
"@babel/preset-env": "^7.15",
"babel-loader": "^8.2",
"core-js": "^3.18.3",
"css-loader": "^6",
"css-minimizer-webpack-plugin": "^3",
"kind-of": "^6.0.3",
"mini-css-extract-plugin": "^2",
"minimist": "^1.2.6",
"nanoid": "^3.3.4",
"set-value": "^4.1.0",
"terser": "^5.14.2",
"terser-webpack-plugin": "^5.3.5",
"url-parse": "^1.5.10",
"webpack": "^5",
"webpack-assets-manifest": "^5",
"webpack-bundle-analyzer": "^4.5",
"webpack-cli": "^4",
"webpack-subresource-integrity": "^5"
},
"dependencies": {
"@uppy/core": "^3.1.2",
"@uppy/dashboard": "^3.3.2",
"@uppy/drag-drop": "^3.0.1",
"@uppy/xhr-upload": "^3.1.1"
}
}