Add package.json

This commit is contained in:
Adam Svystun 2018-09-01 17:11:20 +02:00
parent e96ddeb49e
commit 23683e25b5

45
package.json Normal file
View file

@ -0,0 +1,45 @@
{
"name": "comixify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config ./frontend/client/webpack.config.js",
"build:watch": "webpack --config ./frontend/client/webpack.config.js --watch",
"build:prod": "NODE_ENV=production webpack --config ./frontend/client/webpack.config.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maciej3031/comixify.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/maciej3031/comixify/issues"
},
"homepage": "https://github.com/maciej3031/comixify#readme",
"dependencies": {
"axios": "^0.18.0",
"babel": "^6.23.0",
"babel-core": "^6.7.*",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.6.*",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.5.*",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.18.0",
"css-loader": "^0.28.7",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-dropzone": "^5.0.1",
"react-spinners": "^0.4.5",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.17.1",
"webpack-merge": "^4.1.1"
},
"devDependencies": {
"webpack-cli": "^3.1.0"
}
}