-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.67 KB
/
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
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
{
"name": "@tool-db/tool-db",
"private": true,
"version": "0.0.0",
"description": "A decentralized database model for p2p networks.",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --include-dependencies",
"clean": "lerna run --parallel clean",
"release": "lerna publish",
"test": "jest --clearCache && jest ./ --detectOpenHandles",
"test:watch": "jest --watch ./"
},
"author": "Manwe <manuel.etchegaray7@gmail.com>",
"license": "ISC",
"optionalDependencies": {
"level": "^7.0.0",
"simple-peer": "^9.11.1",
"web3": "^1.7.4",
"web3-core": "^1.7.4",
"ws": "^8.8.0"
},
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.4",
"@types/level": "^6.0.1",
"@types/simple-peer": "^9.11.4",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"browserify": "^17.0.0",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"jest-environment-jsdom-global": "^3.1.2",
"lerna": "^4.0.0",
"np": "^7.6.2",
"npm-watch": "^0.11.0",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4",
"typescript-eslint": "0.0.1-alpha.0",
"uglify-js": "^3.16.2"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=16.0.0"
},
"watch": {
"build": {
"patterns": [
"packages/*/lib/*"
],
"extensions": "js,ts"
}
}
}