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
|
{
"name": "phash-check",
"version": "1.0.0",
"description": "perceptual hash library",
"main": "index.js",
"scripts": {
"watch": "NODE_ENV=development webpack --config ./webpack.config.dev.js --colors --watch",
"buildDev": "NODE_ENV=development webpack --config ./webpack.config.dev.js --colors",
"build": "NODE_ENV=production webpack --config ./webpack.config.prod.js"
},
"author": "julescarbon@gmail.com",
"license": "UNLICENSED",
"dependencies": {
"connected-react-router": "^6.4.0",
"dotenv": "^7.0.0",
"exifreader": "^2.8.2",
"history": "^4.9.0",
"preact": "^8.4.2",
"preact-compat": "^3.18.4",
"prop-types": "^15.6.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-hot-loader": "^4.3.0",
"react-redux": "^5.1.1",
"react-router": "^5.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.24.1",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.1",
"css-loader": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.0.4",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "3.x.x",
"webpack-cli": "^3.1.0"
}
}
|