-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
43
44
{
"name": "ts-jest-setup",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write **/*.{js,ts,tsx}",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test:watch": "jest --watchAll --verbose",
"test:coverage": "jest --coverage",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"dependencies": {
"next": "9.5.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"sass": "^1.26.10"
},
"devDependencies": {
"@babel/preset-typescript": "^7.10.4",
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react": "^10.4.8",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-jest": "^26.3.0",
"cypress": "^5.0.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-react": "^7.20.6",
"identity-obj-proxy": "^3.0.0",
"isomorphic-unfetch": "^3.0.0",
"jest": "^26.4.0",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
}
}