-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.84 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.84 KB
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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "bps-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch --passWithNoTests",
"test:ci": "jest --ci --passWithNoTests",
"docker-build:local": "docker compose -f docker/local/docker-compose.yml build",
"docker-start:local": "docker compose -f docker/local/docker-compose.yml up -d",
"docker-stop:local": "docker compose -f docker/local/docker-compose.yml down",
"docker-build:dev": "docker compose -f docker/development/docker-compose.yml build",
"docker-start:dev": "docker compose -f docker/development/docker-compose.yml up -d",
"docker-stop:dev": "docker compose -f docker/development/docker-compose.yml down",
"docker-build:prod": "docker compose -f docker/production/docker-compose.yml build",
"docker-start:prod": "docker compose -f docker/production/docker-compose.yml up -d",
"docker-stop:prod": "docker compose -f docker/production/docker-compose.yml down"
},
"dependencies": {
"@nivo/bar": "^0.81.0",
"@nivo/core": "^0.83.0",
"@nivo/line": "^0.80.0",
"@nivo/pie": "^0.80.0",
"@nivo/tooltip": "^0.83.0",
"@react-spring/web": "^9.7.3",
"@reduxjs/toolkit": "^1.9.5",
"@tanstack/react-query": "^4.32.6",
"@tanstack/react-query-devtools": "^4.32.6",
"@testing-library/jest-dom": "^5.17.0",
"axios": "^1.4.0",
"boring-avatars": "^1.10.1",
"classnames": "^2.3.2",
"next": "13.4.12",
"next-redux-wrapper": "^8.1.0",
"react": "18.2.0",
"react-cookie": "^6.1.0",
"react-csv": "^2.2.2",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.11",
"react-hook-form": "^7.45.2",
"react-redux": "^8.1.2",
"redux-persist": "^6.0.0",
"sharp": "^0.32.5"
},
"devDependencies": {
"@hookform/devtools": "^4.3.1",
"@testing-library/dom": "^9.3.1",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/classnames": "^2.3.1",
"@types/node": "^20.4.7",
"@types/react": "^18.2.18",
"@types/react-csv": "^1.1.3",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^13.4.12",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"msw": "^1.2.4",
"sass": "^1.64.2",
"stylelint": "^15.10.2",
"stylelint-config-property-sort-order-smacss": "^9.1.0",
"stylelint-config-standard-scss": "^10.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}