1
Fork 0
photoview/ui/package.json

97 lines
2.3 KiB
JSON
Raw Normal View History

2019-07-05 00:36:32 +02:00
{
"name": "photoview-ui",
2019-07-05 00:36:32 +02:00
"version": "0.0.1",
"license": "GPL-3.0",
"description": "UI app for Photoview",
2019-07-05 00:36:32 +02:00
"dependencies": {
2020-02-15 23:29:03 +01:00
"@babel/preset-env": "^7.8.4",
2019-08-23 00:33:10 +02:00
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
2020-01-19 22:25:03 +01:00
"apollo-link": "^1.2.13",
"apollo-link-context": "^1.0.19",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "^1.5.16",
"apollo-link-ws": "^1.0.19",
2020-02-15 23:29:03 +01:00
"babel-plugin-styled-components": "^1.10.7",
"copy-to-clipboard": "^3.2.1",
"downloadjs": "^1.4.7",
2020-02-15 23:29:03 +01:00
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
2020-03-05 20:10:43 +01:00
"lodash": "^4.17.15",
2020-01-19 22:25:03 +01:00
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
2020-02-20 17:14:11 +01:00
"react": "^16.12.0",
2019-08-23 00:33:10 +02:00
"react-apollo": "^3.0.1",
"react-dom": "^16.9.0",
2020-01-19 22:25:03 +01:00
"react-lazyload": "^2.6.5",
"react-router-dom": "^5.1.2",
2019-07-20 11:48:27 +02:00
"react-spring": "^8.0.27",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.0",
2020-02-15 23:29:03 +01:00
"styled-components": "^5.0.1",
2019-07-20 18:25:15 +02:00
"subscriptions-transport-ws": "^0.9.16"
2019-07-05 00:36:32 +02:00
},
"scripts": {
2019-07-07 23:53:07 +02:00
"start": "parcel start src/index.html",
2019-07-29 23:39:38 +02:00
"build": "parcel build src/index.html",
2019-07-05 00:36:32 +02:00
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"now-build": "react-scripts build"
},
"devDependencies": {
2020-02-15 23:29:03 +01:00
"@babel/core": "^7.8.4",
2020-01-19 22:25:03 +01:00
"@babel/plugin-transform-runtime": "^7.8.3",
"babel-eslint": "^10.0.3",
2020-01-19 22:25:03 +01:00
"eslint": "^6.8.0",
2020-02-15 23:29:03 +01:00
"eslint-plugin-react": "^7.18.3",
2020-01-19 22:25:03 +01:00
"eslint-plugin-react-hooks": "^2.3.0",
2020-02-15 23:29:03 +01:00
"husky": "^4.2.3",
2019-07-18 17:40:54 +02:00
"isarray": "^2.0.5",
2020-02-15 23:29:03 +01:00
"lint-staged": "^10.0.7",
"parcel-plugin-sw-cache": "^0.3.1",
2020-02-19 22:14:59 +01:00
"react-helmet": "^5.2.1",
2019-08-16 14:02:01 +02:00
"react-router-prop-types": "^1.0.4"
2019-07-05 00:36:32 +02:00
},
2020-02-15 23:29:03 +01:00
"cache": {
"swDest": "service-worker.js"
},
2019-07-05 00:36:32 +02:00
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
2019-07-07 15:54:39 +02:00
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
2019-07-07 23:53:07 +02:00
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry"
}
]
],
"plugins": [
"babel-plugin-styled-components",
"@babel/plugin-transform-runtime"
2019-07-07 23:53:07 +02:00
]
},
2019-07-05 00:36:32 +02:00
"lint-staged": {
"*.{js,json,css,md,graphql}": [
"prettier --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}