-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.65 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.65 KB
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": "hola@codecoolture.com",
"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": "12.1.4",
"react": "18.0.0",
"react-dom": "18.0.0"
},
"devDependencies": {
"@testing-library/cypress": "8.0.2",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "12.1.4",
"@testing-library/user-event": "14.0.4",
"@types/jest": "27.4.1",
"@types/node": "16.11.26",
"@types/react": "17.0.44",
"@types/testing-library__cypress": "5.0.9",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"babel-jest": "27.5.1",
"cypress": "9.5.3",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-react": "7.29.4",
"husky": "7.0.4",
"isomorphic-fetch": "3.0.0",
"jest": "27.5.1",
"nock": "13.2.4",
"prettier": "2.6.2",
"start-server-and-test": "1.14.0",
"typescript": "4.6.3"
}
}