-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
{
"name": "vocaloid-rankings",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 8080",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@formatjs/intl-localematcher": "^0.5.2",
"@material/material-color-utilities": "^0.2.7",
"@mui/x-charts": "^6.19.4",
"autoprefixer": "10.4.14",
"bcrypt": "^5.1.1",
"better-sqlite3": "^9.4.1",
"color-thief-node": "^1.0.4",
"cookies-next": "^4.1.1",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"graphql": "^16.8.1",
"graphql-hooks": "^7.0.0",
"graphql-hooks-memcache": "^3.2.0",
"linkedom": "^0.16.8",
"material-symbols": "^0.14.7",
"negotiator": "^0.6.3",
"next": "^14.1.0",
"next-themes": "^0.2.1",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-transition-group": "^4.4.5",
"sharp": "^0.32.6",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.10",
"@tailwindcss/typography": "^0.5.10",
"@types/bcrypt": "^5.0.2",
"@types/better-sqlite3": "^7.6.4",
"@types/color-thief-node": "1.0.2",
"@types/markdown-it": "^13.0.7",
"@types/negotiator": "^0.6.1",
"@types/next": "^9.0.0",
"@types/node": "20.4.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@types/react-transition-group": "^4.4.6"
},
"engines": {
"node": "20.x"
},
"dockerfile": {
"envs": {
"base": {
"NEXT_TELEMETRY_DISABLED": "1"
}
}
}
}