-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.1 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
{
"name": "zerodash",
"version": "0.2.2",
"description": "Library for utilizing Graffiti Feed with Personal Storage - FIP 62",
"main": "dist/index.js",
"scripts": {
"prepare": "rimraf dist && npm run compile:types && npm run compile",
"compile": "tsc",
"compile:types": "tsc --emitDeclarationOnly --declaration --skipLibCheck",
"dev": "npm run compile -- --watch --env mode=development",
"lint": "eslint --fix \"src/**/*.ts\" && prettier --write \"src/**/*.ts\"",
"lint:check": "eslint \"src/**/*.ts\" && prettier --check \"src/**/*.ts\"",
"check:types": "tsc --project tsconfig.json --skipLibCheck",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose --selectProjects=node:unit node:integration --config=jest.config.ts",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose --selectProjects=node:unit --config=jest.config.ts ",
"test:integration": "node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose --selectProjects=node:integration --config=jest.config.ts"
},
"keywords": [
"0_",
"zerodash",
"swarm",
"ethereum",
"web3",
"decentralized",
"decentralised"
],
"author": "Viktor Levente Tóth @nugaon",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-typescript": "^7.18.6",
"@jest/types": "^29.3.1",
"@types/jest": "^29.2.6",
"@types/terser-webpack-plugin": "^5.2.0",
"@types/webpack-bundle-analyzer": "^4.6.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@ethersphere/bee-js": "^6.9.1",
"ethers": "^5.7.2"
}
}