-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "next-app-dir-test",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "rimraf .next",
"dev": "next dev",
"build": "next build",
"start": "next start",
"serve": "next build && next start",
"lint": "next lint",
"server": "ts-node ./server.ts"
},
"dependencies": {
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.0.3",
"@stylexjs/open-props": "^0.2.0-beta.27",
"@stylexjs/stylex": "^0.2.0-beta.27",
"@types/mdx": "^2.0.10",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"bright": "^0.8.4",
"next": "14.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.72.0",
"uuid": "^9.0.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-syntax-flow": "^7.22.5",
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/plugin-syntax-typescript": "^7.22.5",
"@stylexjs/babel-plugin": "^0.2.0-beta.27",
"@stylexjs/eslint-plugin": "^0.2.0-beta.27",
"@stylexjs/nextjs-plugin": "^0.2.0-beta.27",
"@types/node": "20.8.10",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"eslint": "8.52.0",
"eslint-config-next": "14.0.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "5.2.2"
}
}