-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "cosmos-backend",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">=14.11.0",
"yarn": ">=1.22.4"
},
"scripts": {
"algob": "algob",
"lint": "eslint --ext .js,.ts scripts",
"lint:fix": "eslint --fix --ext .js,.ts scripts",
"build": "tsc --build .",
"build:watch": "tsc -w -p .",
"deploy": "yarn build && yarn algob deploy",
"test": "yarn build && mocha",
"setup:algob": "./setupalgob.sh"
},
"dependencies": {
"@types/chai": "^4.2.19",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"algosdk": "^1.9.1",
"chai": "^4.3.4",
"cross-env": "7.0.3",
"eslint": "^7.26.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sonarjs": "^0.7.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.3.2",
"node-fetch": "^2.6.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"devDependencies": {
"@types/superagent": "^4.1.11"
},
"eslintConfig": {
"extends": ".eslintrc.js"
}
}