forked from makerdao/dai.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.29 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
68
69
70
{
"name": "dai-monorepo",
"version": "0.1.0",
"repository": "[email protected]:makerdao/dai.js.git",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn lerna run build",
"lint": "eslint packages/**/src packages/**/test",
"prettier": "prettier --single-quote --write 'packages/**/{src,test,contracts}/**/*.js'",
"coverage": "yarn testchain --ci yarn lerna run --stream --concurrency 1 --no-bail coverage",
"testchain": "./scripts/run-testchain.sh",
"testchain:fast": "./scripts/run-testchain.sh -s default -u",
"test": "yarn testchain --ci yarn lerna run --stream --concurrency 1 --no-bail test",
"test:integration": "yarn testchain --ci yarn lerna --stream --concurrency 1 --no-bail run test:integration",
"test:build": "yarn testchain --ci yarn lerna run --stream --concurrency 1 --no-bail test:build",
"test:logs": "tail -f ./node_modules/@makerdao/testchain/var/ganache.out | grep -v 'eth_blockNumber'",
"update-addresses": "./scripts/install-testchain-outputs.sh",
"postinstall": "patch-package"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./packages/**/{src,web,test,contracts}/**/*.(j|t)s": [
"prettier --single-quote --write",
"eslint"
]
},
"workspaces": [
"packages/*"
],
"dependencies": {
"lerna": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@makerdao/testchain": "^1.1.33-beta5",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"@typescript-eslint/parser": "^4.31.2",
"chokidar": "^2.0.4",
"copyfiles": "^2.0.0",
"eslint": "^5.15.1",
"eslint-loader": "^2.1.2",
"husky": "^3.0.8",
"jest": "^27.2.1",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^7.1.0",
"minimist": "^1.2.0",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^1.12.1",
"sane": "^4.0.3",
"solc": "^0.4.23",
"terser-webpack-plugin": "^2.3.6",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"tsdx": "^0.14.1",
"typescript": "^4.4.3",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11"
}
}