-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.76 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint '**/*.{js,ts}'",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier '**/*.{ts,json,sol,md}' --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"test": "npx lerna run test:ci --stream",
"build": "npx lerna run build"
},
"devDependencies": {
"@databases/escape-identifier": "^1.0.3",
"@databases/sql": "^3.2.0",
"@ethersproject/experimental": "^5.7.0",
"@playwright/test": "^1.30.0",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/cosmiconfig": "^6.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/inquirer": "^9.0.3",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^10.0.1",
"@types/shelljs": "^0.8.12",
"@types/sinon": "^10.0.20",
"@types/yargs": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"c8": "^8.0.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"d1-orm": "^0.9.0",
"drizzle-orm": "^0.29.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^36.1.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"lerna": "^7.1.1",
"mock-stdin": "^1.0.0",
"mocha": "^10.2.0",
"openapi-typescript": "6.2.4",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.1.3",
"sinon": "^17.0.1",
"tempy": "^3.0.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.0"
}
}