-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 951 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 951 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
{
"name": "data-structures-and-algorithms",
"version": "1.0.0",
"description": "Practice with Data Structures and Algorithms",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajenkins198621/data-structures-and-algorithms.git"
},
"author": "Austin Jenkins",
"license": "ISC",
"bugs": {
"url": "https://github.com/ajenkins198621/data-structures-and-algorithms/issues"
},
"transform": {
"^.+\\.(ts|tsx|js|jsx)$": "ts-jest"
},
"homepage": "https://github.com/ajenkins198621/data-structures-and-algorithms#readme",
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"react": "^18.2.0",
"typescript": "^5.0.4"
}
}