-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.09 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
{
"name": "nextjs-template",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "next lint",
"dev": "next dev -p 3002",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"test": "jest"
},
"dependencies": {
"@mantine/core": "^4.1.3",
"@mantine/hooks": "^4.1.3",
"@pixi/graphics-smooth": "0.0.30",
"@types/color": "^3.0.3",
"@types/cookie": "^0.4.1",
"@types/d3": "^7.4.0",
"@types/pinyin": "^2.10.0",
"@types/sat": "0.0.31",
"@types/three": "^0.141.0",
"@xstate/react": "^1.6.3",
"clsx": "^1.1.1",
"color": "^4.2.3",
"cookie": "^0.4.1",
"d3": "^7.6.1",
"github-markdown-css": "^5.1.0",
"immer": "^9.0.15",
"mobx": "^6.4.2",
"mobx-react-lite": "^3.3.0",
"next": "^12.3.1",
"next-sitemap": "^2.5.17",
"pinyin": "^2.11.0",
"pixi.js": "^6.4.2",
"random": "^3.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga4": "^1.0.6",
"react-icons": "^4.3.1",
"react-sizeme": "^3.0.2",
"react-use": "^17.3.1",
"react-utterances": "^0.6.4",
"recharts": "^2.1.6",
"rxjs": "^7.5.7",
"sat": "^0.9.0",
"serverless-mysql": "^1.5.4",
"swr": "^1.2.2",
"three": "^0.142.0",
"ts-key-enum": "^2.0.12",
"use-sound": "^4.0.1",
"xstate": "^4.26.1",
"zod": "^3.19.1"
},
"devDependencies": {
"@next/mdx": "^12.3.1",
"@storybook/react": "^6.5.9",
"@types/jest": "^27.0.1",
"@types/node": "^16.4.13",
"@types/react": "^17.0.16",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.4.2",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"jest": "^27.2.0",
"next-compose-plugins": "^2.2.1",
"postcss": "^8.4.7",
"tailwindcss": "^3.0.23",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/*.test.(ts|tsx)"
],
"testPathIgnorePatterns": [
"./.next/",
"./node_modules/"
],
"moduleDirectories": [
"node_modules",
"<rootDir>"
]
}
}