forked from poap-xyz/poap.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.61 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": "poap.js",
"version": "0.0.1",
"description": "A library containing moments and registry modules",
"main": "index.ts",
"scripts": {
"build": "bash ./build.sh",
"lint": "eslint 'packages/**/src/**/*.ts' --fix",
"format": "prettier --write 'packages/**/src/**/*.ts'",
"publish": "bash ./publish-update-packages.sh",
"docs": "typedoc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poap-xyz/poap.js.git"
},
"author": "POAP",
"license": "MIT",
"bugs": {
"url": "https://github.com/poap-xyz/poap.js/issues"
},
"homepage": "https://github.com/poap-xyz/poap.js#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.6",
"rollup": "^3.20.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^29.1.0",
"typedoc": "^0.23.28",
"typescript": "^5.0.2"
},
"workspaces": [
"packages/*",
"examples/**"
],
"packageManager": "[email protected]",
"dependencies": {
"@types/node": "^18.16.0",
"ts-node": "^10.9.1"
}
}