-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "@deploydao/verified-programs",
"private": true,
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:deploydao/verified-programs.git",
"author": "Ian Macalinao <[email protected]>",
"license": "Apache-2.0",
"packageManager": "[email protected]",
"devDependencies": {
"@project-serum/anchor": "^0.24.2",
"@rushstack/eslint-patch": "^1.1.3",
"@saberhq/eslint-config": "^1.13.30",
"@saberhq/tsconfig": "^1.13.30",
"@types/eslint": "^8.4.3",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.45",
"@types/prettier": "^2.6.3",
"@types/semver": "^7.3.10",
"@types/yaml": "^1.9.7",
"axios": "^0.27.2",
"eslint": "^8.18.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"toml": "^3.0.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"dependencies": {
"lodash": "^4.17.21",
"semver": "^7.3.7",
"tiny-invariant": "^1.2.0",
"tslib": "^2.4.0",
"yaml": "^2.1.1"
},
"scripts": {
"typecheck": "tsc",
"lint": "eslint . --cache",
"generate-workflows": "ts-node scripts/generateWorkflows.ts",
"generate-index": "ts-node scripts/generateIndex.ts",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{md,json,js,yml,yaml,html}": "prettier --write"
}
}