-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 989 Bytes
/
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
{
"name": "maker-next-starter",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "echo \"Add some tests\"",
"lint": "next lint",
"cy": "cypress open",
"cy:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cy",
"e2e:headless": "start-server-and-test start http://localhost:3000 cy:headless"
},
"dependencies": {
"@next/bundle-analyzer": "^13.3.2",
"maker-ui": "^2.0.12",
"next": "^13.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.32.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"cypress": "^12.11.0",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.2",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"start-server-and-test": "^2.0.0",
"typescript": "^5.0.4"
}
}