-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.32 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.32 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
{
"name": "plottimeseries",
"version": "1.0.0",
"description": "A Node.js project to visualize time series data from CSV files using React and D3.js. This project provides both a rich development environment and a standalone CLI utility for generating reports.",
"main": "index.js",
"scripts": {
"dev": "node scripts/dev.ts",
"build": "node scripts/plot-csv.ts",
"lint": "eslint src scripts",
"typecheck": "tsc --noEmit -p src/tsconfig.json -p scripts/tsconfig.json",
"test": "tsx --test 'src/**/*.test.ts' 'src/**/*.test.tsx'",
"test:update-snapshots": "UPDATE_SNAPSHOTS=1 tsx --test 'src/**/*.test.ts' 'src/**/*.test.tsx'"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"d3": "^7.9.0",
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"esbuild": "^0.27.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
}
}