-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "react-atdd-playground",
"version": "1.1.0",
"private": true,
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Sergio Álvarez",
"url": "https://codecoolture.com"
},
"scripts": {
"analyze": "yarn lint && yarn typecheck",
"build": "next build",
"ci:test:acc": "yarn build && yarn start-test start 3000 cy:run",
"ci:test:unit": "yarn test:unit --runInBand",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "next dev",
"lint": "eslint . --ext .ts,.tsx",
"start": "next start",
"test:all": "yarn test:acc && yarn test:unit",
"test:acc": "start-test dev 3000 cy:run",
"test:acc:live": "start-test dev 3000 cy:open",
"test:unit": "jest",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"next": "13.5.6",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@testing-library/cypress": "8.0.7",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.5.2",
"@types/node": "16.18.124",
"@types/react": "17.0.83",
"@types/testing-library__cypress": "5.0.13",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-jest": "27.5.1",
"cypress": "9.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-react": "7.37.4",
"husky": "7.0.4",
"isomorphic-fetch": "3.0.0",
"jest": "27.5.1",
"nock": "13.5.6",
"prettier": "2.8.8",
"start-server-and-test": "1.15.4",
"typescript": "4.9.5"
}
}