-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.89 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
67
68
69
70
{
"name": "308-todolist",
"version": "1.0.0",
"description": "",
"main": "index.js",
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"lint": "npx eslint . && npx prettier --check .",
"backend": "nodemon backend/server.js",
"frontend": "npm run -w frontend dev",
"test": "npx jest .",
"coverage": "npx jest --coverage .",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapierre26/ToDo_List.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sapierre26/ToDo_List/issues"
},
"homepage": "https://github.com/sapierre26/ToDo_List#readme",
"devDependencies": {
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.27.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"babel-jest": "^29.7.0",
"concurrently": "^9.1.2",
"cypress": "^14.4.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.5",
"jest": "^29.7.0",
"mockingoose": "^2.16.2",
"prettier": "^3.5.0",
"react-router-dom": "^7.3.0",
"supertest": "^7.0.0",
"vite": "^6.3.5"
},
"dependencies": {
"@types/next": "^8.0.7",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"cors": "^2.8.5",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"googleapis": "^149.0.0",
"lib": "^5.1.0",
"mongodb": "^6.14.2",
"mongoose": "^8.12.1",
"next": "^15.2.2",
"split-pane-react": "^0.1.3",
"ts-jest": "^29.3.4"
}
}