-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "react-crud",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"unit-tests": "jest tests/unit --coverage",
"snapshot-tests": "jest tests/snapshot",
"e2e-tests": "cypress run",
"e2e-tests:open": "cypress open"
},
"dependencies": {
"autoprefixer": "^9.7.4",
"next": "9.3.1",
"next-offline": "^5.0.1",
"postcss-import": "^12.0.1",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-hook-form": "^5.1.3",
"react-icons": "^3.9.0",
"tailwindcss": "^1.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.2",
"cypress": "^4.4.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"jest": "^25.3.0",
"prettier": "^2.0.1"
}
}