-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@react-hook/media-query": "^1.1.1",
"fuzzysort": "^2.0.1",
"immutable": "^4.0.0",
"next": "13.5.4",
"react": "^18.2.0",
"react-container-dimensions": "^1.4.1",
"react-dom": "18.2.0",
"react-query": "^3.5.5",
"react-select-search": "^2.2.1",
"react-vega": "^7.4.2",
"react-window": "^1.8.6",
"sass": "^1.29.0",
"vega": "^5.21.0",
"vega-lite": "^5.5.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/node": "^18.11.17",
"@types/react": "^18.0.18",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"autoprefixer": "^10.0.2",
"eslint-config-next": "^13.0.7",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.1.10",
"standard": "^17.0.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.5.4"
},
"prettier": {
"semi": false,
"importOrder": [
"^react$",
"^next/(.*)$",
"<THIRD_PARTY_MODULES>",
"^lib/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
}
}