-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.76 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.76 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
{
"name": "pulse-metrics",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest --watchAll=false",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts,.tsx",
"api": "cd api && go run .",
"dev:full": "concurrently \"npm run dev\" \"npm run api\"",
"test:e2e": "E2E_BASE_URL=http://localhost:3001 jest --config jest.e2e.config.js --runInBand --forceExit"
},
"dependencies": {
"axios": "0.27.2",
"chart.js": "3.7.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.6",
"react-router-dom": "5.3.4",
"redux": "4.1.2",
"redux-thunk": "2.4.1",
"styled-components": "5.3.6"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@babel/preset-react": "^7.18.0",
"@babel/preset-typescript": "^7.18.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^27.5.2",
"@types/react": "^17.0.50",
"@types/react-dom": "^17.0.17",
"@types/react-redux": "^7.1.25",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^3.1.0",
"babel-jest": "^27.5.1",
"concurrently": "^8.2.2",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"puppeteer": "^24.37.5",
"typescript": "4.7.4",
"vite": "^4.3.9"
}
}