-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.92 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.92 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
{
"private": true,
"name": "monapi",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "preact build",
"serve": "sirv build --port 8080 --cors --single",
"dev": "preact watch",
"lint": "eslint src",
"test": "jest --passWithNoTests --coverage"
},
"eslintConfig": {
"extends": "preact",
"ignorePatterns": [
"build/"
]
},
"devDependencies": {
"@testing-library/dom": "^8.18.1",
"@testing-library/preact": "^3.2.2",
"enzyme": "^3.10.0",
"enzyme-adapter-preact-pure": "^2.0.0",
"eslint": "^6.0.1",
"eslint-config-preact": "^1.1.0",
"glob-parent": ">=5.1.2",
"got": ">=11.8.5",
"jest": "^24.9.0",
"jest-canvas-mock": "^2.4.0",
"jest-preset-preact": "^1.0.0",
"jsdom": ">=16.5.0",
"node-notifier": ">=8.0.1",
"nth-check": ">=2.0.1",
"preact-cli": "^3.0.0",
"sirv-cli": "1.0.3"
},
"dependencies": {
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@chakra-ui/icons": "^2.0.11",
"@chakra-ui/react": "^2.3.4",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@sentry/react": "^7.17.3",
"@sentry/tracing": "^7.17.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^13.5.0",
"axios": "0.21.2",
"chart.js": "^3.9.1",
"chartjs-adapter-date-fns": "^2.0.1",
"date-fns": "^2.29.3",
"framer-motion": "^7.3.5",
"moment": "^2.29.4",
"preact": "^10.3.2",
"preact-global-state": "^1.0.5",
"preact-render-to-string": "^5.1.4",
"preact-router": "^4.1.0",
"react": "^18.2.0",
"react-hook-form": "^7.36.0",
"react-icons": "^4.4.0",
"react-pro-sidebar": "^0.7.1"
},
"jest": {
"preset": "jest-preset-preact",
"setupFiles": [
"<rootDir>/tests/__mocks__/browserMocks.js",
"<rootDir>/tests/__mocks__/setupTests.js"
],
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
}
}
}