-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "ntueater-imgeditor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --devtool eval --progress --colors --content-base build",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./build/index.bundle.js",
"compile": "NODE_ENV=production webpack --config ./webpack.config.js --progress"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"copy-webpack-plugin": "^4.5.2",
"file-loader": "^2.0.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-html-replace": "^1.6.2",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@google-cloud/vision": "^0.21.0",
"axios": "^0.18.0",
"jquery": "^3.3.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-input-range": "^1.3.0"
}
}