-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
{
"name": "jsplaygrounddev",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "serve out",
"lint": "next lint",
"tsc": "tsc",
"fmt": "prettier -w ."
},
"dependencies": {
"@babel/generator": "^7.24.1",
"@babel/parser": "^7.24.1",
"@babel/traverse": "^7.24.1",
"@babel/types": "^7.24.0",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.8",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/view": "^6.26.0",
"@next/third-parties": "^14.1.4",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.5",
"@uiw/codemirror-theme-github": "^4.21.25",
"@uiw/react-codemirror": "^4.21.25",
"classnames": "^2.5.1",
"console-feed": "^3.5.0",
"next": "14.1.4",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.0.1",
"use-local-storage-state": "^19.2.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"patch-package": "^8.0.0",
"postcss": "^8",
"prettier": "^3.2.5",
"serve": "^14.2.1",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"overrides": {
"console-feed": {
"react-inspector": "^6.0.2"
}
}
}