63 lines
1.8 KiB
JSON
63 lines
1.8 KiB
JSON
{
|
|
"name": "apollo-upload-examples-app",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Jayden Seric",
|
|
"email": "me@jaydenseric.com",
|
|
"url": "https://jaydenseric.com"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jaydenseric/apollo-upload-examples.git",
|
|
"directory": "app"
|
|
},
|
|
"homepage": "https://github.com/jaydenseric/apollo-upload-examples#readme",
|
|
"bugs": "https://github.com/jaydenseric/apollo-upload-examples/issues",
|
|
"funding": "https://github.com/sponsors/jaydenseric",
|
|
"engines": {
|
|
"node": "^18.15.0 || >=20.4.0",
|
|
"npm": ">=7"
|
|
},
|
|
"browserslist": "Node 18.15 - 19 and Node < 19, Node >= 20.4, > 0.5%, not OperaMini all, not IE > 0, not dead",
|
|
"dependencies": {
|
|
"@apollo/client": "^3.7.4",
|
|
"apollo-upload-client": "^17.0.0",
|
|
"device-agnostic-ui": "~10.0.0",
|
|
"graphql": "^16.6.0",
|
|
"next": "^13.1.2",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "^7.19.1",
|
|
"@types/eslint": "^8.4.10",
|
|
"@types/node": "^18.11.18",
|
|
"@types/react": "^18.0.26",
|
|
"@types/react-dom": "^18.0.10",
|
|
"babel-plugin-graphql-tag": "^3.3.0",
|
|
"eslint": "^8.31.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-simple-import-sort": "^8.0.0",
|
|
"prettier": "^2.8.2",
|
|
"stylelint": "^14.16.1",
|
|
"stylelint-config-recommended": "^9.0.0",
|
|
"typescript": "^4.9.4"
|
|
},
|
|
"overrides": {
|
|
"next": "^13.1.2",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"eslint": "eslint .",
|
|
"stylelint": "stylelint '**/*.css'",
|
|
"prettier": "prettier -c .",
|
|
"types": "tsc -p jsconfig.json",
|
|
"test": "npm run eslint && npm run stylelint && npm run prettier && npm run types"
|
|
}
|
|
}
|