-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.85 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
{
"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",
"publish-beta": "bash ./publish-beta-packages.sh",
"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": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.10",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.15.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-mock-extended": "^3.0.5",
"prettier": "^3.2.4",
"rollup": "^4.9.6",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}