-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.91 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.91 KB
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
{
"name": "unirep",
"version": "2.1.5",
"main": "index.js",
"license": "MIT",
"description": "UniRep is a private and nonrepudiable data system based on ZKP",
"workspaces": [
"packages/*"
],
"private": true,
"author": "Unirep Team",
"repository": "https://github.com/Unirep/Unirep",
"scripts": {
"install": "git submodule init && git submodule update",
"contracts": "yarn workspace @unirep/contracts run",
"core": "yarn workspace @unirep/core run",
"circuits": "yarn workspace @unirep/circuits run",
"utils": "yarn workspace @unirep/utils run",
"docs": "yarn workspace @unirep/docs run",
"subgraph": "yarn workspace @unirep/subgraph run",
"build": "lerna run build",
"pre": "yarn workspaces run pre",
"test": "yarn workspaces run test",
"lint": "prettier .",
"lint:fix": "prettier . --write",
"prepare": "husky install"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"argparse": "^2.0.1",
"chai": "^4.3.6",
"eslint": "^8.11.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.12.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"lint-staged": {
"**/{src,test,config,scripts,circuits}/**/*.{ts,json,sol}": [
"prettier --write"
]
},
"dependencies": {
"lerna": "^6.0.1"
}
}