-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.82 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
{
"name": "nx-hardhat",
"description": "NX Plugin for generating Hardhat based Ethereum smart contract apps",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"build": "nx build nx-hardhat",
"test": "nx test nx-hardhat",
"lint": "nx workspace-lint && nx lint nx-hardhat",
"e2e": "nx e2e nx-hardhat",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"commit-msg": "node tools/scripts/verifyCommit.js",
"prepare": "husky install"
},
"private": true,
"devDependencies": {
"@nrwl/cli": "12.10.0",
"@nrwl/devkit": "12.10.0",
"@nrwl/eslint-plugin-nx": "12.10.0",
"@nrwl/jest": "12.10.0",
"@nrwl/linter": "12.10.0",
"@nrwl/node": "12.10.0",
"@nrwl/nx-plugin": "^12.10.0",
"@nrwl/tao": "12.10.0",
"@nrwl/workspace": "12.10.0",
"@types/jest": "26.0.24",
"@types/node": "14.14.33",
"@types/shelljs": "^0.8.9",
"@typescript-eslint/eslint-plugin": "~4.28.5",
"@typescript-eslint/parser": "~4.31.1",
"chalk": "^4.1.2",
"conventional-github-releaser": "^3.1.5",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"hardhat": "^2.6.6",
"husky": "^7.0.1",
"jest": "27.0.3",
"prettier": "^2.3.2",
"ts-jest": "27.0.3",
"tslib": "^2.0.0",
"typescript": "~4.3.5"
},
"dependencies": {
"shelljs": "^0.8.4",
"tslib": "^2.0.0"
}
}