12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "frontend",
- "version": "1.0.0",
- "description": "",
- "main": "index.js",
- "scripts": {
- "start": "next",
- "build": "next build",
- "test": "NODE_ENV=test jest --watch"
- },
- "keywords": [],
- "author": "",
- "license": "ISC",
- "dependencies": {
- "apollo-boost": "^0.3.1",
- "apollo-cache-inmemory": "^1.5.1",
- "apollo-client": "^2.5.1",
- "apollo-link": "^1.2.11",
- "apollo-link-error": "^1.1.10",
- "apollo-link-http": "^1.5.14",
- "apollo-upload-client": "^10.0.0",
- "dotenv": "^7.0.0",
- "graphql": "^14.2.1",
- "graphql-tag": "^2.10.1",
- "next": "^8.0.4",
- "next-link": "^2.0.0",
- "next-with-apollo": "^3.4.0",
- "nprogress": "^0.2.0",
- "prettier-standard": "^9.1.1",
- "react": "^16.8.6",
- "react-adopt": "^0.6.0",
- "react-apollo": "^2.5.4",
- "react-dom": "^16.8.6",
- "standard": "^12.0.1",
- "styled-components": "^4.2.0"
- },
- "devDependencies": {
- "babel-jest": "^24.8.0",
- "babel-plugin-styled-components": "^1.10.0",
- "jest": "^24.8.0",
- "jest-transform-graphql": "^2.1.0",
- "enzyme": "^3.9.0",
- "enzyme-adapter-react-16": "^1.12.1"
- },
- "jest": {
- "setupFilesAfterEnv": [
- "<rootDir>/jest.setup.js"
- ],
- "testPathIgnorePatterns": [
- "<rootDir>/.next/",
- "<rootDir>/node_modules/"
- ],
- "transform": {
- "\\.(gql|graphql)$": "jest-transform-graphql",
- ".*": "babel-jest"
- }
- }
- }
|