-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.95 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
61
62
63
64
65
66
67
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"volta": {
"node": "16.16.0"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"ci": "yarn test:unit && yarn lint && yarn types && yarn format",
"test": "jest --coverage --runInBand --detectOpenHandles",
"test:unit": "jest --coverage --testMatch='**/unit/**/*.test.ts'",
"test:integration": "jest --testMatch='**/integration/**/*.test.ts'",
"test:e2e": "jest --testMatch='**/e2e/**/*.test.ts'",
"test:watch": "jest --watchAll",
"lint": "next lint",
"lint:fix": "next lint --fix",
"types": "tsc",
"format": "prettier --check '**/*.{js,jsx,ts,tsx}'",
"format:fix": "prettier --write '**/*.{js,jsx,ts,tsx}'",
"start": "next start",
"start-server": "next start -H 0.0.0.0 -p ${PORT:-8080}",
"codegen": "openapi-typescript ./src/spec/openapi.json --output ./src/spec/openapi.ts --prettier-config ./.prettierrc.json"
},
"resolutions": {
"source-map": "^0.7.4"
},
"dependencies": {
"@hashgraph/sdk": "^2.6.0",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"joi": "^17.6.0",
"next": "^12.2.2",
"next-logger": "^3.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"source-map": "^0.7.4",
"swagger-ui-react": "^4.13.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.6",
"@types/joi": "^17.2.3",
"@types/next": "^9.0.0",
"@types/node": "^18.0.4",
"@types/react": "^18.0.15",
"@types/swagger-ui-react": "^4.11.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.2.2",
"eslint-config-prettier": "^8.5.0",
"jest": "^26.4.0",
"next-test-api-route-handler": "^3.1.6",
"node-mocks-http": "^1.8.1",
"openapi-typescript": "^5.4.1",
"prettier": "^2.7.1",
"tsc": "^2.0.4",
"typescript": "^4.7.4"
}
}