-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "tzcso",
"version": "1.0.0",
"description": "Tezos Rolling SAFE sample application - Smart contract and wrapper functions",
"license": "MIT",
"author": "B9lab Ltd",
"homepage": "https://tezos.b9lab.com",
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"test": "npm run mocha-only",
"lint": "eslint --ignore-path .gitignore .",
"mocha-only": "mocha test --recursive --require choma",
"test-individually": "find test -type f | xargs -I {} mocha {}",
"lint-fix": "eslint --ignore-path .gitignore . --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/b9lab/tezos-app-project.git"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"choma": "1.2.1",
"eslint": "7.8.0",
"eslint-plugin-chai-friendly": "0.6.0",
"eslint-plugin-node": "11.1.0",
"express": "4.17.1",
"mocha": "8.1.3",
"mocked-env": "1.3.2",
"sinon": "9.0.3",
"supertest": "4.0.2"
},
"dependencies": {
"@taquito/beacon-wallet": "^9.2.0",
"@taquito/taquito": "^9.2.0",
"axios": "^0.21.1",
"jquery": "^3.6.0"
}
}