-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 KB
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
{
"name": "cloc-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "BROWSER=none netlify dev",
"next:dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"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:8888 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:8888 cypress:headless"
},
"dependencies": {
"@cronitorio/cronitor-rum-js": "0.2.0",
"@cronitorio/cronitor-rum-nextjs": "0.5.1",
"@sentry/browser": "10.32.1",
"@types/wicg-file-system-access": "2023.10.7",
"faunadb": "4.4.1",
"framer-motion": "12.25.0",
"next": "16.1.1",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.1",
"@testing-library/user-event": "14.6.1",
"@types/node": "25.0.5",
"@types/react": "19.2.8",
"babel-jest": "30.2.0",
"cypress": "15.8.2",
"eslint": "9.39.2",
"eslint-config-next": "16.1.1",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"netlify-cli": "23.13.3",
"netlify-plugin-cypress": "2.2.1",
"start-server-and-test": "2.1.3",
"typescript": "5.9.3"
}
}