-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.35 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
45
46
{
"name": "image_compress_app",
"version": "1.0.0",
"description": "A small self-service app that lets you compress images and download them for later use.",
"scripts": {
"start": "npm run-script build && node app.js",
"build": "webpack --config ./webpack.prod.config.js --progress --colors",
"dev-start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config webpack.dev.config.js"
},
"author": "Brett Gaynor",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"css-loader": "^0.28.7",
"del": "^3.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"gulp": "^3.9.1",
"jquery": "^2.2.1",
"jsdom": "^8.1.0",
"node-sass": "^4.5.3",
"path": "^0.12.7",
"react-addons-test-utils": "^15.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"babel-preset-stage-1": "^6.1.18",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"request": "^2.85.0"
},
"engines": {
"node": "8.9.4"
}
}