forked from makerdao/dai.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.41 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'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./packages/**/{src,web,test,contracts}/**/*.js": [
"prettier --single-quote --write",
"eslint"
]
},
"workspaces": [
"packages/*"
],
"dependencies": {
"lerna": "^3.15.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.5",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.4.5",
"@makerdao/testchain": "^1.1.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^3.2.0",
"chokidar": "^2.0.4",
"copyfiles": "^2.0.0",
"eslint": "^5.15.1",
"eslint-loader": "^2.1.2",
"html-webpack-plugin": "^2.30.1",
"husky": "^3.0.8",
"jest": "^24.5.0",
"lint-staged": "^7.1.0",
"minimist": "^1.2.0",
"prettier": "^1.12.1",
"sane": "^4.0.3",
"solc": "^0.4.23",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^3.3.2"
}
}