-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.26 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run build:all && next build",
"start": "next start",
"test": "mocha -r tsx 'src/**/*.test.ts'",
"build:all": "npm run build:theme",
"build:theme": "tsx scripts/buildTheme/buildTheme.ts",
"lint": "status=0; npm run lint:eslint || status=1; npm run lint:types || status=1; exit $status",
"lint:eslint": "npx eslint .",
"lint:types": "npx tsc --noEmit"
},
"engines": {
"node": "20.x"
},
"dependencies": {
"@chakra-ui/react": "^2.7.1",
"@ebay/nice-modal-react": "^1.2.9",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@monaco-editor/react": "^4.4.6",
"@next-auth/mongodb-adapter": "^1.1.1",
"@tippyjs/react": "^4.2.6",
"@types/prismjs": "^1.26.0",
"@types/react-beautiful-dnd": "^13.1.3",
"ajv": "^8.12.0",
"copy-webpack-plugin": "^11.0.0",
"esbuild": "^0.18.17",
"framer-motion": "^10.12.21",
"git-clone-client": "^0.0.6",
"immer": "^9.0.17",
"jotai": "^2.4.0",
"monaco-editor": "^0.34.1",
"monaco-editor-textmate": "^4.0.0",
"monaco-editor-webpack-plugin": "^7.0.1",
"monaco-textmate": "^3.0.1",
"mongodb": "^4.13.0",
"nanoid": "^4.0.0",
"next": "latest",
"next-auth": "^4.22.1",
"onigasm": "^2.2.5",
"prism-themes": "^1.9.0",
"prismjs": "^1.29.0",
"raw-loader": "^4.0.2",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-click-away-listener": "^2.2.3",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-youtube": "^10.1.0",
"swr": "^2.0.0",
"tar": "^7.0.1",
"tiny-invariant": "^1.3.1",
"tippy.js": "^6.3.7",
"use-immer": "^0.8.1",
"vercel": "^31.0.3"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.12.11",
"@types/react": "18.0.26",
"@types/uglify-js": "^3.17.1",
"@types/web": "^0.0.144",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"chalk": "^5.2.0",
"deepmerge": "^4.3.1",
"eslint": "^8.31.0",
"eslint-plugin-react": "^7.31.11",
"mocha": "^10.2.0",
"monaco-vscode-textmate-theme-converter": "^0.1.7",
"tsx": "^3.12.7",
"typescript": "4.9.4",
"uglify-js": "^3.17.4"
}
}