-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "cloc-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "BROWSER=none netlify dev",
"next:dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:unit:ci": "jest --ci",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:headless"
},
"dependencies": {
"@cronitorio/cronitor-rum-nextjs": "^0.2.1",
"@netlify/functions": "^0.10.0",
"@sentry/browser": "^6.17.6",
"@sentry/tracing": "^6.17.6",
"@types/wicg-file-system-access": "^2020.9.4",
"faunadb": "^4.4.1",
"framer-motion": "^5.5.5",
"next": "13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/node": "^14.18.7",
"@types/react": "18.0.28",
"babel-jest": "27.4.5",
"cypress": "^9.3.1",
"eslint": "8.5.0",
"eslint-config-next": "13.2.4",
"jest": "27.4.5",
"netlify-cli": "^13.1.3",
"netlify-plugin-cypress": "^2.2.0",
"start-server-and-test": "1.13.1",
"typescript": "4.5.4"
}
}