|
| 1 | +{ |
| 2 | + "private": true, |
| 3 | + "name": "theme-ui-next-boilerplate", |
| 4 | + "version": "1.0.0", |
| 5 | + "main": "index.js", |
| 6 | + "author": "Frederick Morin (https://freddydumont.com)", |
| 7 | + "license": "MIT", |
| 8 | + "scripts": { |
| 9 | + "dev": "next", |
| 10 | + "build": "next build", |
| 11 | + "start": "next start", |
| 12 | + "lint": "next lint", |
| 13 | + "test": "jest", |
| 14 | + "test:watch": "jest --watch", |
| 15 | + "test:cov": "jest --coverage", |
| 16 | + "typecheck": "tsc --noEmit --pretty ", |
| 17 | + "cypress:open": "cypress open", |
| 18 | + "cypress:run": "cypress run", |
| 19 | + "prepare": "husky install" |
| 20 | + }, |
| 21 | + "dependencies": { |
| 22 | + "@emotion/css": "^11.9.0", |
| 23 | + "@emotion/react": "^11.9.0", |
| 24 | + "@emotion/server": "^11.4.0", |
| 25 | + "@emotion/styled": "^11.8.1", |
| 26 | + "@mdx-js/loader": "^1.6.22", |
| 27 | + "@mdx-js/react": "^1.6.22", |
| 28 | + "@next/mdx": "^12.1.6", |
| 29 | + "@theme-ui/css": "^0.14.4", |
| 30 | + "@theme-ui/presets": "^0.14.2", |
| 31 | + "@theme-ui/style-guide": "^0.14.5", |
| 32 | + "next": "^12.1.6", |
| 33 | + "next-nprogress-emotion": "^2.0.0", |
| 34 | + "react": "^17.0.2", |
| 35 | + "react-dom": "^17.0.2", |
| 36 | + "theme-ui": "^0.14.5" |
| 37 | + }, |
| 38 | + "devDependencies": { |
| 39 | + "@babel/core": "^7.18.0", |
| 40 | + "@emotion/jest": "^11.9.1", |
| 41 | + "@testing-library/cypress": "^8.0.2", |
| 42 | + "@testing-library/jest-dom": "^5.16.4", |
| 43 | + "@testing-library/react": "^12.1.5", |
| 44 | + "@types/jest": "^27.5.0", |
| 45 | + "@types/node": "^17.0.35", |
| 46 | + "@types/react": "^17.0.43", |
| 47 | + "babel-jest": "^27.5.1", |
| 48 | + "cypress": "^9.6.1", |
| 49 | + "eslint": "^8.16.0", |
| 50 | + "eslint-config-next": "12.1.6", |
| 51 | + "eslint-plugin-cypress": "^2.12.1", |
| 52 | + "husky": "^8.0.1", |
| 53 | + "jest": "^27.5.1", |
| 54 | + "lint-staged": "^12.4.1", |
| 55 | + "prettier": "^2.6.2", |
| 56 | + "typescript": "^4.6.4" |
| 57 | + }, |
| 58 | + "lint-staged": { |
| 59 | + "*.{ts,tsx,js}": [ |
| 60 | + "yarn lint --max-warnings 0" |
| 61 | + ], |
| 62 | + "*.{ts,tsx,js,css,json,md,mdx}": [ |
| 63 | + "prettier --write" |
| 64 | + ] |
| 65 | + } |
| 66 | +} |
0 commit comments