-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 881 Bytes
/
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
{
"name": "javascript_algotithms_and_data_structures",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"start": "nodemon ./src/index.js",
"test": "jest --watchAll",
"tsc": "npx tsc"
},
"author": "Aleksandr Gerasimov <[email protected]>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@datastructures-js/priority-queue": "5.4.0",
"@types/jest": "^29.5.14",
"@types/node": "22.13.11",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"numstree": "2.1.0"
},
"type": "module",
"nodemonConfig": {
"ext": "js, mjs, ts",
"ignore": [
"*.tmp.js",
"tmp.js",
"*.tmp.ts",
"tmp.ts"
]
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-typescript": "^7.26.0"
},
"packageManager": "[email protected]"
}