-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.05 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.05 KB
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
{
"name": "ct.js-website",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "vite",
"build": "yarn typecheck && yarn lint && vite build",
"preview": "vite preview",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"lint": "yarn lint:format && yarn lint:fix",
"typecheck": "tsc"
},
"dependencies": {
"@material-ui/core": "^4.3.2",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"@material-ui/styles": "^4.11.5",
"axios": "^0.27.2",
"buffer": "^6.0.3",
"clone": "^2.1.2",
"clsx": "^1.1.1",
"for-editor-dark": "^0.3.9",
"form-data": "^4.0.0",
"history": "^4.10.1",
"include-media": "^1.4.10",
"istextorbinary": "^6.0.0",
"jszip": "^3.9.1",
"mobx": "^6.5.0",
"mobx-react": "^7.4.0",
"monaco-editor": "^0.33.0",
"path-browserify": "^1.0.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-helmet-async": "^1.3.0",
"react-markdown": "^8.0.3",
"react-meta-tags": "^1.0.1",
"react-router-dom": "^5.3.1",
"react-scroll": "^1.8.7",
"react-syntax-highlighter": "^15.5.0",
"sass": "^1.51.0"
},
"devDependencies": {
"@types/clone": "^2.1.1",
"@types/node": "^17.0.42",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/react-router-dom": "^5.3.3",
"@types/react-scroll": "^1.8.3",
"@types/react-syntax-highlighter": "^15.5.2",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@vitejs/plugin-react": "^1.3.2",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.6.2",
"typescript": "^4.6.3",
"vite": "^2.9.13",
"vite-plugin-monaco-editor": "^1.1.0",
"vite-tsconfig-paths": "^3.5.0"
}
}