-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 977 Bytes
/
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
{
"name": "@cowprotocol/snapshot-settings",
"version": "1.0.0",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/cowprotocol/snapshot-settings.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint --max-warnings 0 .",
"fmt": "yarn lint --fix",
"ipfs:publish": "npx ipfs-deploy src/settings.json -p pinata -C -q",
"test": "jest"
},
"devDependencies": {
"@eslint/js": "^8.53.0",
"@snapshot-labs/snapshot.js": "^0.8.1",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"ipfs-deploy": "^12.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}