-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
54 lines (54 loc) · 1.59 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": "notion-url-shortener",
"private": true,
"scripts": {
"cypress": "cypress open",
"cypress:headless": "cypress run",
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --ignore-path ./node_modules/@younho9/prettier-config/.prettierignore",
"lint": "xo",
"test": "yarn test:unit --run && yarn test:e2e:headless",
"test:unit": "vitest",
"test:e2e": "NODE_ENV=test start-server-and-test dev http://localhost:3000 cypress",
"test:e2e:headless": "NODE_ENV=test start-server-and-test dev http://localhost:3000 cypress:headless"
},
"prettier": "@younho9/prettier-config",
"dependencies": {
"@chakra-ui/react": "1.7.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/inter": "4.5.1",
"@narkdown/notion-utils": "0.1.0",
"@notionhq/client": "^1.0.4",
"@react-hookz/web": "^12.3.0",
"@sindresorhus/is": "^4.5.0",
"@younho9/object": "0.9.1",
"framer-motion": "^4",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "4.3.1",
"ts-extras": "^0.10.2",
"zod": "3.11.6"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.6",
"@types/node": "16.11.12",
"@types/react": "17.0.37",
"@younho9/prettier-config": "2.3.1",
"cypress": "^10.0.2",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"node-mocks-http": "^1.11.0",
"prettier": "2.5.1",
"start-server-and-test": "^1.14.0",
"type-fest": "2.8.0",
"typescript": "^4.7.3",
"vitest": "^0.14.1",
"xo": "0.48.0"
}
}