1
Fork 0
photoview/ui/package.json

104 lines
2.6 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": {
"@babel/preset-env": "^7.11.5",
2020-06-15 17:12:16 +02:00
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
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-08-18 13:20:34 +02:00
"babel-plugin-styled-components": "^1.11.1",
"copy-to-clipboard": "^3.3.1",
"downloadjs": "^1.4.7",
2020-08-18 13:20:34 +02:00
"graphql": "^15.3.0",
"graphql-tag": "^2.11.0",
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",
2020-06-15 17:12:16 +02:00
"react-helmet": "^6.1.0",
"react-lazyload": "^3.0.0",
2020-06-15 17:12:16 +02:00
"react-router-dom": "^5.2.0",
2019-07-20 11:48:27 +02:00
"react-spring": "^8.0.27",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.0",
"styled-components": "^5.2.0",
2020-08-18 13:20:34 +02:00
"subscriptions-transport-ws": "^0.9.18",
"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",
2020-09-27 22:49:51 +02:00
"build": "parcel build src/index.html --no-source-maps",
"test": "eslint ./src --max-warnings 0 --cache"
2019-07-05 00:36:32 +02:00
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.11.5",
"babel-eslint": "^10.1.0",
"babel-plugin-graphql-tag": "^3.1.0",
"babel-plugin-transform-semantic-ui-react-imports": "^1.4.1",
"eslint": "^7.11.0",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
2020-09-26 21:19:47 +02:00
"mapbox-gl": "^1.12.0",
2020-02-15 23:29:03 +01:00
"parcel-plugin-sw-cache": "^0.3.1",
"prettier": "^2.1.2",
"react-router-prop-types": "^1.0.5"
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": {
2020-09-27 22:49:51 +02:00
"*.{js,json,css,md,graphql}": "prettier --write",
"*.js": "eslint --cache --fix --max-warnings 0"
2019-07-05 00:36:32 +02:00
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}