-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.47 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
{
"name": "composer",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && prettier --list-different '**/*.{js,md,ts,tsx}' && tsc && ts-unused-exports tsconfig.json",
"format": "prettier --write '**/*.{js,md,ts,tsx}'",
"test": "jest"
},
"dependencies": {
"@babel/standalone": "^7.23.10",
"@codemirror/autocomplete": "^6.4.0",
"@codemirror/commands": "^6.2.0",
"@codemirror/lang-javascript": "^6.1.3",
"@codemirror/language": "^6.5.0",
"@codemirror/lint": "^6.1.0",
"@codemirror/search": "^6.2.3",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.8.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@lezer/common": "^1.0.2",
"@lezer/highlight": "^1.1.3",
"@mui/material": "^5.11.8",
"@vanilla-extract/css-utils": "^0.1.3",
"classnames": "^2.3.2",
"codemirror": "^6.0.1",
"dedent": "^0.7.0",
"deep-equal": "^2.2.0",
"fast-glob": "^3.2.12",
"fuse.js": "^6.6.2",
"hammerjs": "^2.0.8",
"immer": "^9.0.19",
"lodash": "^4.17.21",
"next": "^13.1.6",
"parse-prop-types": "^0.3.0",
"polished": "^4.2.2",
"re-resizable": "^6.9.9",
"react": "^18.2.0",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.3.5",
"react-is": "^18.2.0",
"react-rnd": "^10.4.1",
"react-zoomable-ui": "^0.11.0",
"style-mod": "^4.0.0",
"ts-extras": "^0.11.0",
"ts-invariant": "^0.10.3",
"use-debounce": "^9.0.3",
"zod": "^3.22.4",
"zustand": "^4.3.3"
},
"devDependencies": {
"@types/babel__standalone": "^7.1.7",
"@types/dedent": "^0.7.0",
"@types/deep-equal": "^1.0.1",
"@types/hammerjs": "^2.0.41",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.13.0",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-is": "^17.0.3",
"@types/webpack-env": "^1.18.0",
"@vanilla-extract/css": "^1.9.5",
"@vanilla-extract/next-plugin": "^2.1.1",
"eslint": "^8.33.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"jest": "^29.4.2",
"lint-staged": "^13.1.1",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-unused-exports": "^9.0.3",
"typescript": "^4.9.5"
}
}