-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
87 lines (87 loc) · 2.76 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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-typescript-todomvc-2022",
"version": "1.0.0",
"license": "MIT",
"author": "Ryota Murakami <[email protected]> (https://ryota-murakami.github.io/)",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "https://github.com/laststance/react-typescript-todomvc-2022"
},
"bugs": {
"url": "https://github.com/laststance/react-typescript-todomvc-2022/issues"
},
"homepage": "https://github.com/laststance/react-typescript-todomvc-2022",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.18.0",
"recoil": "^0.7.7",
"styled-components": "^6.1.1",
"stylis": "^4.3.0"
},
"devDependencies": {
"@percy/cli": "^1.27.4",
"@percy/cypress": "^3.1.2",
"@swc/core": "^1.3.96",
"@swc/jest": "^0.2.29",
"@testing-library/cypress": "^10.0.1",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.1.1",
"cypress": "^13.5.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-ts-prefixer": "^1.12.5",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-keys-custom-order": "^1.0.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"serve": "^14.2.0",
"typescript": "^5.2.2",
"vite": "^4.5.5"
},
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "build",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"prettier": "prettier --write \"**/*.+(json|yml|css|md|mdx)\"",
"typecheck": "tsc --noEmit",
"clean": "rimraf yarn.lock package-lock.json node_modules build",
"cypress:run": "cypress run",
"cypress:headed": "cypress run --headed",
"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"
}
}