-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.36 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
{
"private": true,
"scripts": {
"dev": "next dev",
"type-check": "tsc",
"build": "cross-env NEXT_TELEMETRY_DISABLED=true NODE_ENV=production next build && next export",
"start": "next start",
"cypress": "cypress open",
"cypress:headless": "NO_COLOR=1 cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:headless",
"test-chrome": "cypress install && start-server-and-test dev http://localhost:3000 cypress:headless",
"lint": "next lint"
},
"dependencies": {
"classnames": "^2.3.1",
"cross-env": "^7.0.2",
"date-fns": "^2.29.2",
"date-fns-tz": "^1.3.6",
"gray-matter": "^4.0.2",
"libphonenumber-js": "^1.10.13",
"next": "^12.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.34.2",
"react-phone-number-input": "^3.2.9",
"react-query": "^3.39.2",
"react-tracking": "^9.2.1",
"remark": "^14.0.1",
"remark-html": "^15.0.0",
"sanitize.css": "^13.0.0"
},
"devDependencies": {
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"cypress": "^10.6.0",
"eslint": "^8.22.0",
"eslint-config-next": "12.2.5",
"sass": "^1.54.5",
"start-server-and-test": "^1.14.0",
"typescript": "^4.7.4"
}
}