-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.09 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.09 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
{
"name": "data-structures",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean && yarn dist-clean",
"dist-clean": "lerna run dist-clean --stream",
"postinstall": "yarn bootstrap",
"lint": "lerna run lint --stream",
"test": "lerna run test --stream",
"test:set": "lerna run test --stream --scope set-ds",
"test:simple-hashtable": "yarn workspace simple-hashtable test",
"test:singly-linked-list": "lerna run test --stream --scope singly-linked-list"
},
"devDependencies": {
"@types/jest": "27.4.0",
"@types/lodash.isequal": "4.5.5",
"@types/node": "17.0.16",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"eslint": "8.8.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.5.1",
"lerna": "4.0.0",
"prettier": "2.5.1",
"ts-jest": "27.1.3",
"typescript": "4.5.5"
}
}