forked from cpinitiative/ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.58 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
78
79
80
81
82
83
84
{
"name": "ide",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env FIREBASE_AUTH_EMULATOR_HOST=\"127.0.0.1:9099\" concurrently -k \"firebase emulators:start\" \"next dev\"",
"build": "next build",
"start": "next start",
"test": "playwright test",
"prepare": "husky",
"lint": "next lint",
"postinstall": "patch-package"
},
"dependencies": {
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-python": "^6.1.3",
"@headlessui/react": "^1.6.4",
"@heroicons/react": "^2.0.13",
"@popperjs/core": "^2.11.5",
"@replit/codemirror-vim": "^6.1.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.2",
"@types/jest": "^28.1.2",
"@types/react-dom": "^18.0.5",
"@types/react-instantsearch-dom": "^6.12.3",
"@uiw/codemirror-theme-github": "^4.21.21",
"@uiw/codemirror-theme-vscode": "^4.21.21",
"@uiw/react-codemirror": "^4.21.21",
"@vercel/analytics": "^1.0.1",
"algoliasearch": "^4.13.1",
"autoprefixer": "^10.4.7",
"classnames": "^2.3.1",
"dayjs": "^1.11.3",
"firebase": "8",
"firebase-admin": "^11.0.0",
"jotai": "^1.7.2",
"jsdom": "^19.0.0",
"monaco-editor": "^0.33.0",
"monaco-editor-workers": "^0.33.0",
"monaco-languageclient": "^2.0.2",
"monaco-vim": "^0.3.4",
"next": "^14.1.0",
"next-global-css": "^1.3.1",
"normalize-url": "^7.0.3",
"patch-package": "^8.0.0",
"postcss": "^8.4.14",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.2.0",
"react-instantsearch-dom": "^6.28.0",
"react-popper": "^2.3.0",
"react-split-grid": "^1.0.4",
"tailwindcss": "^3.1.3",
"tiny-invariant": "^1.3.1",
"vscode-ws-jsonrpc": "^1.0.1",
"y-codemirror.next": "^0.3.2",
"y-monaco": "^0.1.4",
"y-websocket": "^1.4.5",
"yjs": "^13.5.45"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.{js,jsx,ts,tsx}": "eslint --fix"
},
"devDependencies": {
"@playwright/test": "^1.31.2",
"@types/reach__router": "^1.3.10",
"@types/react": "^18.0.14",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint-config-next": "^14.1.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"typescript": "^4.7.4"
}
}