1
Fork 0
photoview/ui/package.json

104 lines
2.5 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-04-23 21:55:24 +02:00
"@babel/preset-env": "^7.9.5",
2019-08-23 00:33:10 +02:00
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
2020-04-23 21:55:24 +02:00
"apollo-link": "^1.2.14",
"apollo-link-context": "^1.0.20",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"apollo-link-ws": "^1.0.20",
2020-02-15 23:29:03 +01:00
"babel-plugin-styled-components": "^1.10.7",
"copy-to-clipboard": "^3.3.1",
"downloadjs": "^1.4.7",
2020-04-23 21:55:24 +02:00
"graphql": "^15.0.0",
2020-02-15 23:29:03 +01:00
"graphql-tag": "^2.10.3",
2020-01-19 22:25:03 +01:00
"parcel-bundler": "^1.12.4",
"prop-types": "^15.7.2",
2020-04-23 21:55:24 +02:00
"react": "^16.13.1",
"react-apollo": "^3.1.5",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-lazyload": "^2.6.7",
2020-01-19 22:25:03 +01:00
"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-04-23 21:55:24 +02:00
"styled-components": "^5.1.0",
"subscriptions-transport-ws": "^0.9.16",
"url-join": "^4.0.1"
2019-07-05 00:36:32 +02:00
},
"scripts": {
2019-07-07 23:53:07 +02:00
"start": "parcel start src/index.html",
"build": "parcel build src/index.html --no-source-maps"
2019-07-05 00:36:32 +02:00
},
"devDependencies": {
2020-04-23 21:55:24 +02:00
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-plugin-graphql-tag": "^2.5.0",
"babel-plugin-transform-semantic-ui-react-imports": "^1.4.1",
2020-01-19 22:25:03 +01:00
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
2020-04-23 21:55:24 +02:00
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
2020-02-15 23:29:03 +01:00
"parcel-plugin-sw-cache": "^0.3.1",
2020-04-23 21:55:24 +02:00
"prettier": "^2.0.5",
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,
2020-05-08 18:28:26 +02:00
"singleQuote": true,
"arrowParens": "avoid"
2019-07-07 15:54:39 +02:00
},
2019-07-07 23:53:07 +02:00
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry"
}
]
],
"plugins": [
"styled-components",
"@babel/plugin-transform-runtime",
"graphql-tag",
[
"transform-semantic-ui-react-imports",
{
"convertMemberImports": true,
"addCssImports": true
}
]
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"
]
}