-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "myusd",
"version": "1.0.0",
"description": "Cardano smart contracts for Mynth Stablecoin",
"engines": {
"node": "^18.17.0"
},
"type": "module",
"scripts": {
"build": "concurrently \"npx tsc\" \"aiken build\"",
"prettier": "concurrently \"npx prettier -w '**/*.{js,jsx,ts,tsx,json,yml.j2,yml,yaml,.*}'\" \"aiken fmt\" \"taplo format\" \"npx format-md\"",
"lint": "concurrently \"npx prettier --check '**/*.{js,jsx,ts,tsx,json,yml.j2,yml,yaml,.*}'\" \"aiken fmt --check\" \"taplo format --check\" \"npx format-md --check\" \"npx eslint . --max-warnings=0\"",
"test:aiken": "concurrently \"aiken check\"",
"test": "aiken build && npx ava"
},
"dependencies": {
"config": "^3.3.9",
"mynth-helper": "^1.3.13"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@types/config": "^3.3.3",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"ava": "^5.3.1",
"concurrently": "^8.2.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.28.1",
"prettier": "^2.8.8"
},
"ava": {
"files": [
"tests/**/*.test.ts"
],
"extensions": {
"ts": "module"
},
"require": [
"./tests/vault.ts"
],
"nodeArguments": [
"--loader=tsx",
"--no-warnings"
]
},
"prettier": {
"overrides": [
{
"files": "*.yml.j2",
"options": {
"parser": "yaml"
}
}
]
}
}