-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 2.33 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
{
"name": "@resir014/tmviz",
"version": "1.0.0",
"description": "Web-based controller visualisation widget for TrackMania.",
"main": "N/A",
"repository": "https://github.com/resir014/nextjs-typescript-quickstart",
"author": "Resi Respati <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"format": "prettier --write \"./**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\" \"*.config.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"type-check": "tsc --noEmit",
"validate": "npm run type-check && npm run lint"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.2",
"@emotion/cache": "^11.6.0",
"@emotion/react": "^11.6.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@fontsource/inter": "^4.5.1",
"@fontsource/jetbrains-mono": "^4.5.0",
"@resir014/lerp": "^0.1.1",
"@sentry/nextjs": "^6.15.0",
"clsx": "^1.1.1",
"copee": "^1.0.6",
"date-fns": "^2.26.0",
"dequal": "^2.0.2",
"formik": "^2.2.9",
"framer-motion": "^5.3.2",
"gray-matter": "^4.0.3",
"htmr": "^1.0.1",
"jotai": "^1.4.5",
"lodash": "^4.17.21",
"markdown-it": "^12.2.0",
"markdown-it-implicit-figures": "^0.10.0",
"next": "^12.0.4",
"next-seo": "^4.28.1",
"polished": "^4.1.3",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-colorful": "^5.5.1",
"react-dom": "^17.0.2",
"react-use": "^17.3.1",
"yup": "^0.32.11",
"zustand": "^3.6.5"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.3.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "^16.11.10",
"@types/react": "^17.0.36",
"@types/react-dom": "^17.0.11",
"@types/styled-jsx": "^3.4.4",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-kentcdodds": "^19.1.1",
"eslint-config-next": "^12.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"prettier": "^2.4.1",
"typescript": "^4.5.2"
}
}