-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.16 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
68
69
70
{
"name": "project-stats",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"occurances:ingest": "npx ts-node ./src/scripts/occurances/ingest.ts",
"occurances:ingest-prod": "dotenv -e .env.prod -- npx ts-node ./src/scripts/occurances/ingest.ts",
"db:migrate-dev": "prisma migrate dev",
"db:migrate-prod": "prisma migrate deploy",
"db:seed": "npx ts-node ./prisma/seed.ts",
"script": "npx ts-node",
"prepare": "husky",
"test": "jest --config=./jest.config.js"
},
"dependencies": {
"@carbon/icons-react": "^11.52.0",
"@headlessui/react": "^2.0.4",
"@prisma/client": "5.22.0",
"@tmcw/togeojson": "^5.8.1",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"eslint-plugin-next": "^0.0.0",
"jszip": "^3.10.1",
"moment": "^2.30.1",
"next": "14.2.3",
"plotly.js": "^2.35.2",
"prettier": "^3.3.3",
"prisma": "^5.22.0",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-i18next": "^14.1.2",
"react-plotly.js": "^2.6.0",
"swr": "^2.2.5",
"xmldom": "^0.6.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/classnames": "^2.3.1",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/plotly.js": "^2.35.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-plotly.js": "^2.6.3",
"@types/xmldom": "^0.1.34",
"autoprefixer": "^10.4.20",
"commander": "^12.1.0",
"dotenv-cli": "^7.4.4",
"eslint": "^9.15.0",
"eslint-config-next": "^15.0.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"typescript": "^5",
"typescript-eslint": "^8.16.0"
},
"packageManager": "pnpm@10.0.0-alpha.4+sha512.a766482ed7e5802db8966144e1de4918a71bc6b0f11d65d21fc719ce23fe6af38f527ae3b97e826f2378126f620b4d8950d1a990862c8666506cff017ee1d4cc"
}