-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 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
50
51
{
"name": "rybble-web-client",
"version": "1.0.0",
"description": "The web client for Rybble application.",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch --coverage",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"cy:run": "cypress run",
"cy:open": "cypress open",
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/belzy/rybble-web.git"
},
"author": "Brandon G. Elzy",
"license": "MIT",
"bugs": {
"url": "https://github.com/belzy/rybble-web/issues"
},
"homepage": "https://github.com/belzy/rybble-web#readme",
"dependencies": {
"@auth0/nextjs-auth0": "^1.7.0",
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.6",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"bootstrap": "^5.1.3",
"framer-motion": "^6.2.8",
"next": "^12.1.0",
"react": "^17.0.2",
"react-bootstrap": "^2.2.1",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/node": "^17.0.21",
"@types/react": "^17.0.40",
"cypress": "^9.5.2",
"eslint": "^8.11.0",
"eslint-config-next": "^12.1.0",
"jest": "^27.5.1",
"typescript": "^4.6.2"
}
}