-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.56 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "rosette-monorepo",
"version": "0.0.1",
"description": "A monorepo of TypeScript libraries for interacting with the Rosette protocol",
"private": true,
"scripts": {
"build": "preconstruct build",
"changeset:release": "pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"dev": "preconstruct dev",
"hardhat:dev": "pnpm hardhat node --config .config/hardhat.config.ts",
"lint": "eslint --cache",
"lint:fix": "pnpm lint --fix",
"lint:format": "prettier --write",
"lint:types": "tsc --noEmit",
"preinstall": "npx only-allow pnpm",
"postinstall": "husky install .config/husky && pnpm dev",
"test": "pnpm jest",
"test:ci": "pnpm start-server-and-test hardhat:dev http://127.0.0.1:8545 test:coverage",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlossomLabs/rosette.ts.git"
},
"keywords": [
"ethereum"
],
"author": "Blossom Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlossomLabs/rosette.ts/issues"
},
"homepage": "https://github.com/BlossomLabs/rosette.ts#readme",
"preconstruct": {
"packages": [
"packages/*"
]
},
"lint-staged": {
"*.{js,ts,tsx}": [
"pnpm lint:fix"
],
"*.{json,md,mdx,yml}": [
"pnpm lint:format"
]
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@changesets/cli": "^2.22.0",
"@jest/types": "^28.0.2",
"@preconstruct/cli": "^2.1.5",
"@swc-node/jest": "^1.5.1",
"@swc/core": "1.3.3",
"@types/eslint": "^8.4.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.30",
"@types/prettier": "^2.6.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"dotenv": "^16.0.1",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.5.0",
"ethers": "^5.6.4",
"hardhat": "^2.9.5",
"husky": "^7.0.4",
"jest": "^28.0.3",
"jest-environment-jsdom": "^28.0.2",
"jest-watch-typeahead": "^1.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}