-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 921 Bytes
/
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
{
"name": "popular-baby-names",
"version": "1.0.0",
"description": "Analyze and visualize baby names from open data.",
"type": "module",
"author": "",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --config vite.config.ts",
"test-ui": "vitest --config vite.config.ts --ui",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@vitest/coverage-istanbul": "^0.32.4",
"@vitest/ui": "^0.32.4",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jsdom": "^22.1.0",
"typescript": "^5.3.2",
"vite": "^4.5.0",
"vitest": "^0.32.4"
},
"dependencies": {
"d3": "^7.8.5"
}
}