-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.66 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
{
"name": "nightfall",
"version": "1.0.0",
"description": "A solution to enable standard ERC-20 and ERC-721 tokens to be transacted on the Ethereum blockchain with complete privacy",
"main": "index.js",
"scripts": {
"test": "NODE_CONFIG_DIR=./integration-test/config mocha --require @babel/register -b ./integration-test/ --reporter mochawesome --timeout 1000000",
"setup": "docker-compose run zkp npm run setup --",
"setupAll": "docker-compose run zkp npm run setup-all",
"fix": "npm run format && npm run lint -- --fix",
"format": "prettier --write \"**/*.{json,css,scss,md,html}\"",
"lint": "eslint .",
"ui:lint": "cd ui/ && npm ci && npm run lint",
"lint:md": "markdownlint -i node_modules -i build ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/EYBlockchain/nightfall.git"
},
"keywords": [],
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/EYBlockchain/nightfall/issues"
},
"homepage": "https://github.com/EYBlockchain/nightfall#readme",
"dependencies": {
"lodash": "^4.17.15",
"typescript": "^2.9.2"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/register": "^7.4.4",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"chai": "^4.2.0",
"config": "^3.1.0",
"eslint": "^5.16.0",
"eslint-config-codfish": "^2.5.0",
"husky": "^1.3.1",
"lint-staged": "^8.2.1",
"markdownlint-cli": "^0.16.0",
"mocha": "^6.1.4",
"mochawesome": "^4.0.1",
"prettier": "^1.18.2",
"solhint": "^1.5.1",
"superagent": "^5.1.0",
"superagent-prefix": "0.0.2"
}
}