-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "voi-nft-indexer-api",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"postbuild": "cpy 'models/**/*.swagger.yaml' public/openapi --flat",
"dev": "next dev",
"openapi:yaml": "typeconv -f ts -t oapi --oapi-format yaml --output-extension 'swagger.yaml' --output-directory 'models/openapi' 'models/*.ts'",
"start": "next start"
},
"dependencies": {
"@apollo/client": "^3.6.4",
"@xstyled/styled-components": "3.7.0",
"@xstyled/system": "3.7.0",
"algosdk": "^1.11.0",
"bcrypt": "^5.0.1",
"cookies-next": "^2.0.4",
"crypto-browserify": "^3.12.0",
"graphql": "^16.5.0",
"isarray": "2.0.5",
"jquery": "^3.5.1",
"js-sha256": "^0.9.0",
"mocha": "^9.0.3",
"multiformats": "^9.5.8",
"next": "13.0.1",
"next-connect": "^0.12.2",
"next-swagger-doc": "^0.3.6",
"node-fetch": "^3.2.3",
"react": "^18.2.0",
"react-async": "^10.0.1",
"react-dev-utils": "^12.0.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.4.3",
"styled-components": "5.3.6",
"swagger-ui-react": "^4.18.3"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/react": "^18.0.25",
"@types/react-dom": "18.0.8",
"@types/swagger-jsdoc": "6.0.1",
"@typescript-eslint/eslint-plugin": "5.42.0",
"cpy-cli": "4.2.0",
"eslint": "7.29.0",
"eslint-config-next": "11.0.1",
"eslint-plugin-react": "7.31.10",
"prettier": "^2.3.2",
"typeconv": "1.8.0",
"typescript": "5.1.3"
}
}