-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.36 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
{
"name": "node-red-react-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "sh lint.sh",
"build": "webpack --mode development",
"build-all": "sh build.sh apiko-image-cropper apiko-image-gallery",
"start": "nodemon --watch pallets --watch src/client --exec 'npm run build-all'"
},
"node-red": {
"nodes": {
"apiko-image-cropper": "/pallets/apiko-image-cropper/apiko-image-cropper.js",
"apiko-image-gallery": "/pallets/apiko-image-gallery/apiko-image-gallery.js"
}
},
"nodemonConfig": {
"ignore": [
"*/build/"
]
},
"author": "Volodymyr Tymets",
"license": "ISC",
"dependencies": {
"css-loader": "^1.0.0",
"lodash": "^4.17.10",
"react-image-crop": "^6.0.0",
"style-loader": "^0.23.1"
},
"devDependencies": {
"@babel/polyfill": "^7.0.0-beta.52",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^5.0.1",
"eslint-plugin-react": "^7.10.0",
"nock": "^9.4.1",
"nodemon": "^1.17.5",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-photo-gallery": "^6.2.1",
"recompose": "^0.27.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}