-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.13 KB
/
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
38
39
40
41
42
{
"name": "bridgesea",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --coverage",
"cypress": "cypress open",
"cypress:ci": "cypress run",
"test:suite": "next build && next lint && jest --coverage && cypress run"
},
"dependencies": {
"@reduxjs/toolkit": "^1.7.1",
"@testing-library/jest-dom": "^5.16.2",
"@types/react-redux": "^7.1.22",
"formik": "^2.2.9",
"next": "12.0.9",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.6",
"react-transition-group": "^4.4.2",
"redux-devtools-extension": "^2.13.9"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "17.0.13",
"@types/react": "17.0.38",
"@types/react-transition-group": "^4.4.4",
"autoprefixer": "^10.4.2",
"cypress": "^9.4.1",
"eslint": "8.8.0",
"eslint-config-next": "12.0.9",
"eslint-plugin-cypress": "^2.12.1",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.18",
"typescript": "4.5.5"
}
}