-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.93 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
58
59
60
61
62
63
64
65
66
{
"name": "react-todo-list",
"version": "1.0.0",
"description": "",
"main": "./src/index.tsx",
"scripts": {
"start": "webpack-dev-server .",
"build": "webpack .",
"test": "jest",
"test:watch": "jest --watch",
"cypress": "cypress open",
"tscheck": "tsc"
},
"author": "Arvin Ramezani <arvin.ramezani6@gmail.com> (arvin.ramezani6@gmail.com)",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "7.22.11",
"@babel/preset-env": "7.22.10",
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "7.22.11",
"@testing-library/cypress": "^9.0.0",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/cypress": "^1.1.3",
"@types/jest": "^29.5.4",
"@types/react": "18.2.21",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "18.2.7",
"@types/styled-components": "^5.1.26",
"@types/testing-library__cypress": "^5.0.9",
"babel-loader": "9.1.3",
"babel-plugin-styled-components": "^2.1.4",
"css-loader": "6.8.1",
"cypress": "^13.2.0",
"cypress-real-events": "^1.10.1",
"eslint-plugin-cypress": "^2.14.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.3",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"jest-styled-components": "^7.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"style-loader": "3.3.3",
"ts-jest": "^29.1.1",
"typescript": "5.2.2",
"typescript-plugin-styled-components": "^3.0.0",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
},
"dependencies": {
"framer-motion": "^10.16.1",
"react-beautiful-dnd": "^13.1.1",
"react-icons": "^4.11.0",
"styled-components": "5.3.3"
},
"overrides": {
"@testing-library/cypress": {
"cypress": "^13.0.0"
}
}
}