forked from catapultcx/animals-ui-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 978 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": "animals-ui-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"test": "jest tests --coverage --maxWorkers=10",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"cypress": "cypress run"
},
"dependencies": {
"@types/node": "18.14.4",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"bootstrap": "^5.2.3",
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
"next": "13.2.3",
"react": "18.2.0",
"react-bootstrap": "^2.7.2",
"react-dom": "18.2.0",
"typescript": "4.9.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"cypress": "^12.7.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"sass": "^1.58.3",
"start-server-and-test": "^2.0.0",
"ts-node": "^10.9.1"
}
}