-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 847 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
{
"name": "year-in-review",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p ${PORT:=3000}",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"clean": "rimraf .next",
"nuke:install": "rimraf ./node_modules ./package-lock.json"
},
"dependencies": {
"i18next": "22.4.5",
"lodash": "^4.17.21",
"next": "^13.0.7",
"next-i18next": "^13.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.1"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.15",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"eslint-config-next": "^13.0.7",
"picocolors": "^1.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
}
}