1
Fork 0
photoview/ui/package.json

82 lines
1.9 KiB
JSON

{
"name": "grand-stack-starter-ui",
"version": "0.0.1",
"description": "UI app for GRANDstack",
"dependencies": {
"@babel/preset-env": "^7.5.5",
"apollo-cache-inmemory": "^1.6.2",
"apollo-client": "^2.6.3",
"apollo-link": "^1.2.12",
"apollo-link-context": "^1.0.18",
"apollo-link-error": "^1.1.11",
"apollo-link-http": "^1.5.15",
"apollo-link-ws": "^1.0.18",
"babel-plugin-styled-components": "^1.10.6",
"cookie": "^0.4.0",
"graphql": "^14.2.1",
"graphql-tag": "^2.10.1",
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-apollo": "^2.5.5",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-lazyload": "^2.6.2",
"react-router-dom": "^5.0.1",
"react-spring": "^8.0.27",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.87.3",
"styled-components": "^4.3.2",
"subscriptions-transport-ws": "^0.9.16"
},
"scripts": {
"start": "parcel start src/index.html",
"build": "parcel build src/index.html",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"now-build": "react-scripts build"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"husky": "^3.0.2",
"isarray": "^2.0.5",
"lint-staged": "^9.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry"
}
]
],
"plugins": [
"babel-plugin-styled-components"
]
},
"lint-staged": {
"*.{js,json,css,md,graphql}": [
"prettier --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}