2018-11-21 16:49:40 +03:00
|
|
|
{
|
|
|
|
"name": "react-apollo-todo",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"engines": {
|
|
|
|
"node": "8.9.1"
|
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
|
|
|
"apollo-cache-inmemory": "^1.2.10",
|
|
|
|
"apollo-client": "^2.4.2",
|
|
|
|
"apollo-link-context": "^1.0.9",
|
|
|
|
"apollo-link-http": "^1.5.5",
|
|
|
|
"apollo-link-ws": "^1.0.9",
|
|
|
|
"auth0-js": "^9.7.3",
|
|
|
|
"bootstrap": "^4.1.3",
|
|
|
|
"graphql": "^14.0.2",
|
|
|
|
"graphql-tag": "^2.9.2",
|
|
|
|
"graphqurl": "^0.3.2",
|
|
|
|
"moment": "^2.22.2",
|
|
|
|
"prop-types": "^15.6.2",
|
|
|
|
"react": "^16.5.1",
|
|
|
|
"react-apollo": "^2.1.11",
|
|
|
|
"react-bootstrap": "^0.32.4",
|
|
|
|
"react-dom": "^16.5.1",
|
|
|
|
"react-router": "^4.3.1",
|
|
|
|
"react-router-dom": "^4.3.1",
|
2018-11-26 15:57:52 +03:00
|
|
|
"react-scripts": "^1.1.5",
|
2018-11-21 16:49:40 +03:00
|
|
|
"subscriptions-transport-ws": "^0.9.15"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"cypress": "^3.1.0",
|
|
|
|
"husky": "^1.0.0-rc.15",
|
|
|
|
"lint-staged": "^7.3.0",
|
2018-11-26 15:57:52 +03:00
|
|
|
"prettier": "1.14.3"
|
2018-11-21 16:49:40 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
2018-11-26 15:57:52 +03:00
|
|
|
"start": "react-scripts start",
|
2018-11-21 16:49:40 +03:00
|
|
|
"build": "react-scripts build",
|
|
|
|
"test": "cypress run --spec 'cypress/integration/**/**/test.js'",
|
|
|
|
"cypress": "cypress open",
|
|
|
|
"eject": "react-scripts eject",
|
|
|
|
"lint": "eslint src/**/*.js",
|
|
|
|
"lint:fix": "eslint src/**/*.js --fix"
|
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.{js,json,css,md}": [
|
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|