-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
36 lines (36 loc) · 916 Bytes
/
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
{
"name": "jlpt-vocab-api",
"description": "A RESTful / GraphQL API for JPLT vocabulary from N5 to N1",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@apollo/client": "^3.5.8",
"apollo-server-micro": "^3.6.2",
"cors": "^2.8.5",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"next": "12.0.10",
"react": "17.0.2",
"react-dom": "17.0.2",
"swr": "^1.2.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.1",
"@types/cors": "^2.8.12",
"@types/micro-cors": "^0.1.2",
"@types/node": "17.0.16",
"@types/react": "17.0.39",
"autoprefixer": "^10.4.2",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"postcss": "^8.4.6",
"tailwindcss": "^3.0.19",
"typescript": "4.5.5"
}
}