-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "geist-ui-stitiches",
"version": "0.1.0",
"displayName": "Geist-UI Stitches Starter ",
"description": "Geist-UI with Stitches CSS in JS. Next App --Typescript",
"url": "https://buchanandevops.com",
"author": "John Buchanan",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"test": "jest --watch",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format": "yarn lint:fix && yarn prettier"
},
"dependencies": {
"@geist-ui/core": "^2.3.8",
"@next/bundle-analyzer": "^13.2.3",
"@stitches/react": "^1.2.8",
"next": "13.2.3",
"next-pwa": "^5.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "18.14.6",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
"eslint-config-prettier": "^8.6.0",
"eslint-config-vandre": "^1.1.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.10.2",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": "^13.1.2",
"msw": "^1.1.0",
"prettier": "^2.8.4"
}
}