-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 936 Bytes
/
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
{
"devDependencies": {
"@types/jquery": "^3.5.16",
"@types/lodash": "^4.14.195",
"bower": "^1.8.14",
"esbuild": "^0.18.12",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"scripts": {
"bundle": "node esbuild.config.js",
"bundledev": "node esbuild.config.js --dev --watch",
"build": "rimraf dist && npx tsc && npm run bundle",
"dev": "rimraf dist && npm run bundledev"
},
"name": "goofyluauglifier-client",
"version": "1.0.0",
"description": "Frontend Website for goofyluauglifier",
"main": "index.js",
"repository": {
"type": "git",
"url": "GoofyLuaUglifier"
},
"keywords": [
"uglifier",
"lua"
],
"author": "mopsfl",
"license": "ISC",
"dependencies": {
"@materializecss/materialize": "^2.1.0",
"@types/materialize-css": "^1.0.11",
"@types/pako": "^2.0.3",
"jquery": "^3.7.1",
"monaco-editor": "^0.50.0",
"pako": "^2.1.0"
}
}