graphql-engine/community/sample-apps/react-apollo-todo/package.json

57 lines
1.3 KiB
JSON
Raw Normal View History

{
"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",
"react-scripts": "^1.1.5",
"subscriptions-transport-ws": "^0.9.15"
},
"devDependencies": {
"cypress": "^3.1.0",
"husky": "^1.0.0-rc.15",
"lint-staged": "^7.3.0",
"prettier": "1.14.3"
},
"scripts": {
"start": "react-scripts start",
"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"
]
}
}