-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
{
"name": "quant-course-exercises",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate-env": "secure-env .env -s MY_PASSWORD",
"format:lint": "eslint 'examples/**/*.js' --quiet --fix",
"format:prettier": "prettier --config ./.prettierrc.js 'examples/**/*.js' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RafaelAPB/quant-blockchain-developer-course-examples.git"
},
"contributors": [
{
"name": "Luke Riley",
"email": "[email protected]",
"url": "https://www.quant.network/"
},
{
"name": "Rafael Belchior",
"email": "[email protected]",
"url": "https://rafaelapb.github.io/"
}
],
"license": "Apache 2-0",
"bugs": {
"url": "https://github.com/RafaelAPB/quant-blockchain-developer-course-examples/issues"
},
"homepage": "https://github.com/RafaelAPB/quant-blockchain-developer-course-examples#readme",
"dependencies": {
"@quantnetwork/overledger-bundle": "^2.2.1",
"@quantnetwork/overledger-types": "^2.2.1",
"log4js": "^6.4.1",
"npm-run": "5.0.1",
"secure-env": "1.2.0"
},
"devDependencies": {
"eslint": "8.2.0",
"eslint-config-airbnb": "19.0.2",
"eslint-config-node": "^2.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.5.1"
}
}