-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 925 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 925 Bytes
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
{
"name": "js-practice",
"version": "1.0.0",
"description": "JavaScript practice tasks from basic to advanced",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint task-*/**/*.js",
"lint:fix": "eslint task-*/**/*.js --fix"
},
"dependencies": {
"rxjs": "^7.8.2"
},
"keywords": [
"javascript",
"practice",
"tasks"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@testing-library/react": "^14.0.0",
"@testing-library/jest-dom": "^6.1.0",
"identity-obj-proxy": "^3.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}