-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "tddworkshop.com",
"version": "1.0.0",
"author": "Sergio Álvarez <sergio@codecoolture.com>",
"license": "MIT",
"private": true,
"dependencies": {
"@radix-ui/colors": "0.1.9",
"fathom-client": "3.7.2",
"next": "13.1.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "4.12.0",
"react-tooltip": "5.30.0",
"sharp": "0.34.5",
"yup": "1.7.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "13.1.6",
"@testing-library/cypress": "8.0.7",
"@types/jest": "27.5.2",
"@types/react": "17.0.91",
"@types/react-dom": "17.0.26",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"cypress": "9.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.2",
"eslint-plugin-prettier": "4.2.5",
"jest": "27.5.1",
"prettier": "2.8.8",
"start-server-and-test": "1.15.5",
"typescript": "4.9.5"
},
"scripts": {
"analyze": "yarn typecheck && yarn lint",
"build": "next build",
"ci:test:acc": "yarn build && yarn start-server-and-test start 3000 cy:run",
"cy:run": "cypress run",
"cy:open": "cypress open",
"dev": "next dev",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"start": "next start",
"test": "jest",
"test:acc": "start-server-and-test dev 3000 cy:open",
"typecheck": "tsc --noEmit"
}
}