-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 1.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"private": true,
"name": "theme-ui-next-boilerplate",
"version": "1.0.0",
"main": "index.js",
"author": "Frederick Morin (https://freddydumont.com)",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"typecheck": "tsc --noEmit --pretty ",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"prepare": "husky install"
},
"dependencies": {
"@emotion/css": "^11.10.0",
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.4",
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^12.3.1",
"@theme-ui/css": "^0.15.3",
"@theme-ui/presets": "^0.15.3",
"@theme-ui/style-guide": "^0.15.3",
"next": "^12.3.1",
"next-nprogress-emotion": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"theme-ui": "^0.14.7"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@emotion/jest": "^11.10.0",
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.3",
"@types/react": "^18.0.21",
"cypress": "^10.10.0",
"eslint": "^8.26.0",
"eslint-config-next": "12.3.1",
"eslint-plugin-cypress": "^2.12.1",
"husky": "^8.0.1",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"lint-staged": "^13.0.3",
"prettier": "^2.6.2",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"yarn lint --max-warnings 0"
],
"*.{ts,tsx,js,css,json,md,mdx}": [
"prettier --write"
]
}
}