-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "ja-wordcloud",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"export": "next build && next export",
"fix": "run-p fix:*",
"fix:format": "prettier --check --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json}'",
"fix:lint": "next lint --dir 'src' --fix",
"check": "run-p check:*",
"check:lint": "next lint --dir 'src'",
"check:format": "prettier --check --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json}'"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@mantine/core": "^6.0.5",
"@mantine/form": "^6.0.5",
"@mantine/hooks": "^6.0.5",
"@mantine/next": "^6.0.5",
"@tabler/icons-react": "^2.13.1",
"@tsconfig/strictest": "^2.0.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.32",
"@types/wordcloud": "^1.2.0",
"next": "13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"tiny-segmenter": "^0.2.0",
"wordcloud": "^1.2.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "8.37.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7",
"typescript": "5.0.3",
"yarn-run-all": "^3.1.1"
}
}