This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
arbor-frontend/package.json

47 lines
1.2 KiB
JSON

{
"name": "arbor-frontend",
"version": "1.0.0",
"description": "This is the frontend part of the Arbor application",
"main": "index.js",
"scripts": {
"start:dev": "webpack-dev-server",
"build": "webpack -p --define process.env.NODE_ENV='\"production\"' --progress --colors",
"build:watch": "webpack -w -d",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js test/**/*.js",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git@git.timshomepage.net:timw4mail/arbor-frontend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"immutable": "^3.8.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"redux": "^3.5.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"mocha": "^2.5.3",
"postcss": "^5.0.21",
"postcss-cssnext": "^2.6.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"babel": {
"presets": [
"es2015",
"react"
]
}
}