-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.52 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
{
"name": "@0xpolygonid/mongo-storage",
"version": "0.0.7",
"description": "nodejs storage example",
"main": "dist/cjs/index.js",
"scripts": {
"build": "npm run clean && npm run build:tsc",
"test": "mocha",
"build:tsc": "tsc --module commonjs",
"lint": "eslint --fix --ext .js,.ts src/**",
"clean": "rimraf ./dist",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\""
},
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/0xPolygonID/nodejs-storage-example.git"
},
"author": "",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/0xPolygonID/nodejs-storage-example/issues"
},
"homepage": "https://github.com/0xPolygonID/nodejs-storage-example#readme",
"dependencies": {
"@0xpolygonid/js-sdk": "1.7.1",
"@iden3/js-merkletree": "1.1.2",
"mongodb": "^6.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@iden3/eslint-config": "https://github.com/iden3/eslint-config",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-spies": "^1.0.4",
"@types/mocha": "^10.0.2",
"@types/uuid": "^9.0.4",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "10.2.0",
"mongodb-memory-server": "^8.16.0",
"prettier": "^2.7.1",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}