-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.94 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
52
53
54
55
56
57
58
59
60
{
"name": "zeitgeist-token-api",
"version": "1.0.0",
"description": "Zeitgeist token API",
"main": "build/index.js",
"repository": "git@github.com:Whisker17/zeitgeist-token-api.git",
"author": "Whisker17 <yukaijun123456@163.com>",
"license": "MIT",
"scripts": {
"start": " yarn swagger-autogen api.zeitgeist.network && yarn run serve",
"serve": "node build/index.js",
"dev": "yarn swagger-autogen && ts-node-dev -r dotenv/config src/index.ts",
"build": "yarn swagger-autogen && tsc --project tsconfig.json",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix && prettier -w .",
"lint:check": "eslint '*/**/*.{js,ts}' && prettier -c .",
"test": "jest",
"swagger-autogen": "node src/swagger.js"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"jest-config": "^28.1.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.18.6",
"@discordjs/rest": "^1.0.0",
"@polkadot/api": "^9.5.1",
"@polkadot/keyring": "^10.1.11",
"@polkadot/util": "^10.1.11",
"@polkadot/util-crypto": "^10.1.11",
"@zeitgeistpm/sdk": "^0.9.1",
"axios": "^0.27.2",
"cors": "^2.8.5",
"dedent": "^0.7.0",
"discord-api-types": "^0.36.2",
"discord.js": "^14.0.2",
"express": "^4.18.1",
"inversify": "^6.0.1",
"reflect-metadata": "^0.1.13",
"swagger-autogen": "^2.21.5",
"swagger-ui-express": "^4.5.0",
"web3": "^1.7.4"
}
}