-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.63 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
{
"name": "pi-dashboard",
"version": "0.1.0",
"private": true,
"eslintConfig": "/.eslintrc.json",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"jobs": "node src/jobs.ts",
"seed": "./scripts/seed/all.sh",
"seed:timesheet": "./scripts/seed/timesheet.sh",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@antv/g2plot": "^2.4.28",
"@axiomhq/js": "^0.1.3",
"@types/node": "^18.15.5",
"@types/react-dom": "^18.0.11",
"bulma": "^0.9.4",
"dotenv": "^16.4.5",
"eslint-config-next": "^13.5.6",
"next": "^13.2.4",
"postgres": "^3.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"recharts": "^2.12.2",
"sharp": "^0.33.2",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@jest/globals": "^29.6.2",
"@swc/core": "^1.3.106",
"@swc/jest": "^0.2.31",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^14.1.2",
"@types/cron": "^2.0.1",
"@types/jest": "^29.5.3",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.0.1",
"jest": "^29.7.0",
"jest-dom": "^4.0.0",
"jest-environment-jsdom-global": "^4.0.0",
"prettier": "^2.8.7",
"react-test-renderer": "^18.2.0",
"swc": "^1.0.11",
"swc-jest": "^1.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}