forked from roblox-ts/roblox-ts.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
{
"name": "roblox-ts.com",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"serve": "docusaurus serve",
"clear": "docusaurus clear",
"eslint": "eslint 'src/**/*.{ts,tsx}' --max-warnings 0",
"build:rbxts-worker": "cd ./rbxts-worker && npm run build",
"start:playground": "npm run build:rbxts-worker && npm run start",
"postinstall": "cd rbxts-worker && npm install"
},
"dependencies": {
"@docusaurus/core": "2.0.0-beta.21",
"@docusaurus/preset-classic": "2.0.0-beta.21",
"@mdx-js/react": "1.6.22",
"@monaco-editor/react": "4.4.5",
"clsx": "1.1.1",
"lz-string": "1.4.4",
"monaco-editor": "0.33.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^2.0.0-beta.21",
"@tsconfig/docusaurus": "^1.0.6",
"@types/lz-string": "^1.3.34",
"@types/parse-numeric-range": "0.0.1",
"@types/prettier": "^2.6.3",
"@types/react": "^18.0.12",
"@types/react-helmet": "^6.1.5",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"docusaurus-node-polyfills": "^1.0.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"typescript": "^4.7.3",
"webpack-cli": "^4.9.2"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}