-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "next.js-localized",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:server": "NODE_ENV=development tsx ./src/server/server.ts",
"build": "yarn build:next && yarn build:server",
"start": "NODE_ENV=production node ./build/server/server.js",
"build:next": "next build && tsx ./scripts/localize.ts",
"build:server": "rm -rf build && tsc --project tsconfig.express.json && tsc-alias --project tsconfig.express.json"
},
"dependencies": {
"@babel/core": "^7.25.2",
"@faire/babel-plugin-formatjs-localized-bundle": "^2.2.1",
"@types/express": "^4.17.21",
"express": "^4.19.2",
"next": "14.2.6",
"react": "^18",
"react-dom": "^18",
"react-intl": "^6.6.8",
"shrink-ray-current": "^4.1.3",
"tsc-alias": "^1.8.10",
"tsx": "^4.18.0"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.6",
"typescript": "^5"
}
}