-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
59 lines (59 loc) · 1.85 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
{
"name": "ANT-Contract",
"version": "0.2.0",
"private": true,
"scripts": {
"build": "yarn clean && node build.js && tsc --noEmit",
"format:check": "prettier . --check --cache",
"format:fix": "prettier . --write",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "rimraf [ dist cache ]",
"test:unit": "yarn build && jest --testPathPattern=src --coverage --passWithNoTests",
"test:integration": "yarn build && jest --testPathPattern=tests --globalSetup=./tests/setup.jest.ts --globalTeardown=./tests/teardown.jest.ts --runInBand",
"deploy": "yarn build && ts-node ./tools/deploy-contract.ts",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@commitlint/config-conventional": "^18.4.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^27.4.0",
"@types/node": "^20.10.3",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"ajv": "^8.12.0",
"arbundles": "^0.6.18",
"arlocal": "1.1.60",
"arweave": "1.13.7",
"commitlint": "^18.4.3",
"dotenv": "^16.3.1",
"esbuild": "^0.17.12",
"eslint": "^6.7.2",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"replace-in-file": "^6.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.0.0",
"typescript": "4.3.5",
"warp-contracts": "1.4.26",
"warp-contracts-plugin-deploy": "1.0.8"
},
"lint-staged": {
"**/*.{ts,js,json}": [
"eslint . --fix",
"prettier . --write"
]
},
"resolutions": {
"arweave": "1.13.7"
}
}