-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "my-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "cypress run --headed",
"test:headless": "cypress run",
"test:record": "cypress run",
"test:ci": "start-server-and-test 'next dev' 3000 test:headless"
},
"dependencies": {
"@google-cloud/firestore": "^5.0.2",
"@google-cloud/storage": "^5.19.4",
"@headlessui/react": "^1.6.1",
"@react-google-maps/api": "^2.10.2",
"@tailwindcss/forms": "^0.5.1",
"dotenv": "^16.0.1",
"firebase": "^9.8.1",
"firebase-admin": "^10.2.0",
"firebase-tools": "^11.0.1",
"mochawesome": "^7.1.3",
"next": "12.1.6",
"phosphor-react": "^1.4.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"sharp": "^0.30.4",
"start-server-and-test": "^1.14.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"autoprefixer": "^10.4.7",
"cypress": "^8.3.0",
"cypress-mochawesome-reporter": "^3.1.0",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"postcss": "^8.4.13",
"tailwindcss": "^3.0.24"
}
}