-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.17 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
{
"name": "oak.js",
"version": "2.1.0",
"repository": "https://github.com/oak-foundation/oak.js",
"author": "OAK Team <developer@oak.tech>",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=18.16.0",
"yarn": ">=2"
},
"scripts": {
"build:config": "yarn workspace @oak-network/config build",
"build:adapter": "yarn workspace @oak-network/adapter build",
"build:rest": "yarn workspace @oak-network/types build && yarn workspace @oak-network/api-augment build && yarn workspace @oak-network/sdk build",
"build": "yarn run build:config && yarn run build:adapter && yarn run build:rest && yarn run postbuild",
"postbuild": "node scripts/package-setup.js",
"clean": "yarn workspaces foreach --all run clean",
"test": "yarn build && jest --verbose --forceExit --runInBand ./test/functional",
"test:sdk": "yarn build && jest --verbose --runInBand ./test/sdk",
"test:delegate": "yarn build && jest --verbose --runInBand ./test/compound/delegate",
"test:compound": "yarn build && jest --verbose --runInBand ./test/compound/compound",
"changeset": "changeset",
"lint": "eslint . --ext .ts",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.26.2",
"@types/babel__core": "^7",
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.191",
"@types/node": "^20.10.3",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "29.7.0",
"lint-staged": "^14.0.1",
"moment": "^2.29.4",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.ts": "eslint --cache --fix"
},
"packageManager": "yarn@4.0.2"
}