forked from laststance/react-typescript-todomvc-2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.36 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "create-react-app-typescript-todo-example-2021",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"start:prod-build": "serve -s build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint . --ext .ts,.tsx,.js",
"lint:fix": "eslint . --ext .ts,.tsx,.js --fix",
"prettier": "prettier --write {.github,cypress,public,src}/**/*.{html,css,md,json,js,ts,tsx,yml} package.json .prettierrc tsconfig.json cypress.json README.md",
"typecheck": "tsc --noEmit",
"cypress:run": "cypress run --headed",
"cypress:headless": "cypress run --headless",
"cypress:run:chrome": "cypress run --browser chrome",
"cypress:run:chrome:headless": "cypress run --browser chrome --headless",
"cypress:open": "cypress open",
"cypress:percy": "percy exec -- cypress run",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"dependencies": {
"@reach/router": "^1.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"recoil": "^0.3.1",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.8",
"@cypress/instrument-cra": "^1.4.0",
"@cypress/react": "^5.9.1",
"@cypress/webpack-dev-server": "^1.4.0",
"@percy/cli": "^1.0.0-beta.57",
"@percy/cypress": "^3.1.0",
"@testing-library/cypress": "^7.0.6",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/cypress": "^1.1.3",
"@types/jest": "^26.0.24",
"@types/node": "^16.0.1",
"@types/reach__router": "^1.3.9",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.11",
"all-contributors-cli": "^6.19.0",
"cypress": "^7.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"react-scripts": "4.0.3",
"serve": "^12.0.0",
"typescript": "^4.3.4"
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"nyc": {
"exclude": [
"src/serviceWorker.ts",
"src/testUtils.tsx"
]
}
}