forked from NomicFoundation/hardhat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1023 Bytes
/
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
{
"name": "root",
"version": "0.0.0",
"author": "Nomic Labs LLC",
"license": "SEE LICENSE IN EACH PACKAGE'S LICENSE FILE",
"private": true,
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^8.10.44",
"chai": "^4.2.0",
"dotenv": "^6.2.0",
"ganache-cli": "^6.4.3",
"lerna": "^3.13.4",
"mocha": "^5.2.0",
"nyc": "^14.1.0",
"prettier": "1.18.2",
"source-map-support": "^0.5.13",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.15.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~3.5.3"
},
"scripts": {
"build": "lerna exec -- npm run build",
"build-test": "lerna exec -- npm run build-test",
"watch": "tsc --build --watch packages/*/src",
"clean": "lerna exec -- npm run clean",
"test": "scripts/run-tests.sh",
"lint": "lerna exec --no-bail -- npm run lint",
"lint:fix": "lerna exec -- npm run lint:fix"
},
"dependencies": {}
}