-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.79 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
{
"name": "maintenance-utils",
"version": "0.0.1",
"description": "maintenance-utils CLI",
"private": true,
"types": "build/types/types.d.ts",
"bin": {
"maintenance-utils": "bin/maintenance-utils"
},
"scripts": {
"clean-build": "rm -rf ./build",
"compile": "tsc -p .",
"copy-templates": "copyfiles ./src/templates/* ./build/templates",
"build": "yarn clean-build && yarn compile && yarn copy-templates",
"prepublishOnly": "yarn build",
"format": "eslint \"src/**/*.{ts,tsx}\" --fix && prettier \"src/**/*.{ts,tsx}\" --write",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage"
},
"files": [
"build",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"@buildwithsygma/sygma-contracts": "^2.4.1",
"@openzeppelin/contracts": "^4.9.3",
"@polkadot/api": "^10.9.1",
"@polkadot/keyring": "^12.3.2",
"dotenv": "^16.3.1",
"gluegun": "^5.1.2"
},
"devDependencies": {
"@buildwithsygma/sygma-sdk-core": "^2.4.0",
"@chainsafe/eslint-config": "^2.0.0",
"@polkadot/types": "^10.9.1",
"@rushstack/eslint-patch": "^1.3.2",
"@types/jest": "^26.0.20",
"@types/node": "^12.7.11",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"copyfiles": "^2.4.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"ethers": "5.7.2",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.5.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}