-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.07 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "so-tag-bubbles",
"version": "1.0.0",
"description": "A visualization of my top answer tags on StackOverflow",
"keywords": [
"d3",
"data-visualization",
"stackoverflow"
],
"dependencies": {
"@vercel/node": "^2.5.21",
"axios": "^0.27.2",
"clsx": "^1.2.1",
"d3": "^7.6.1",
"eslint": "^8.24.0",
"lodash": "^4.17.21",
"mongodb": "^4.10.0",
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-transition-group": "^4.4.2",
"sass": "^1.55.0",
"swr": "^1.3.0",
"url": "^0.11.0",
"whatwg-url": "^11.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/node-logger": "^6.5.12",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.5.12",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/d3": "^7.4.0",
"@types/d3-hierarchy": "^3.1.0",
"@types/d3-scale": "^4.0.2",
"@types/jest": "^29.1.1",
"@types/lodash": "^4.14.170",
"@types/mongodb": "^3.6.17",
"@types/node": "^18.8.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-test-renderer": "^18.0.0",
"@types/react-transition-group": "^4.4.1",
"@types/whatwg-url": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.24.0",
"postcss": "^8.4.17",
"postcss-loader": "^7.0.1",
"prettier": "^2.3.0",
"prettier-plugin-sort-json": "^0.0.3",
"prettier-plugin-tailwindcss": "^0.1.13",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.1.8",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"test": "react-scripts test --env=jsdom --coverage",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write src/**/*",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx,ts,tsx}",
"!**/*.stories.tsx",
"!node_modules/*"
],
"moduleNameMapper": {
"d3": "<rootDir>/node_modules/d3/dist/d3.min.js"
}
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}