-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
38 lines (38 loc) · 984 Bytes
/
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
{
"name": "jonom-focuspoint",
"version": "3.0",
"description": "Smarter automatic image cropping for SilverStripe",
"license": "MIT",
"author": "Jonathon Menz",
"engines": {
"node": "^10.x"
},
"scripts": {
"build": "yarn && NODE_ENV=production webpack -p --bail --progress",
"dev": "NODE_ENV=development webpack --progress",
"watch": "yarn && NODE_ENV=development webpack --watch --progress",
"css": "yarn && WEBPACK_CHILD=css webpack -p --bail --progress",
"lock": "npm-shrinkwrap --dev",
"lint": "eslint client/src && sass-lint -v client/src"
},
"devDependencies": {
"@silverstripe/webpack-config": "^1.3",
"svg-url-loader": "^2.3.1"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0"
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
}
}