-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 799 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 799 Bytes
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
{
"name": "react-image-scaler",
"version": "0.4.0",
"private": false,
"main": "./lib/ReactImageScaler.js",
"license": "MIT",
"author": "John M Kinghorn",
"babel": {
"presets": [
"@babel/preset-react"
]
},
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.3",
"webpack": "^5.3.0"
},
"scripts": {
"build": "webpack",
"publish:npm": "rm -rf dist && mkdir dist && babel src -d dist --copy-files"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"prettier": "^2.1.2",
"webpack-cli": "^3.3.12"
}
}