-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "ultramotherload",
"version": "1.0.0",
"description": "A fully featured map editor for Super Motherload written only in JS. Uses the FileReader API.",
"scripts": {
"build": "parcel build index.html",
"start": "parcel index.html",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamLeatherdale/ultramotherload.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SamLeatherdale/ultramotherload/issues"
},
"homepage": "https://github.com/SamLeatherdale/ultramotherload#readme",
"devDependencies": {
"@parcel/transformer-sass": "^2.9.3",
"@types/bootstrap": "^4.6.2",
"@types/jquery": "^3.5.17",
"@types/jquery-mousewheel": "^3.1.9",
"@types/jqueryui": "^1.12.17",
"@types/lodash": "^4.14.197",
"parcel": "^2.9.3",
"parcel-reporter-static-files-copy": "^1.5.2",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"bootstrap": "^4.6.2",
"font-awesome": "^4.7.0",
"jquery-mousewheel": "^3.1.13",
"jquery-ui": "^1.13.2",
"lodash": "^4.17.21",
"popper.js": "^1.16.1"
},
"alias": {
"jquery": {
"global": "$"
}
},
"staticFiles": {
"staticPath": "res",
"staticOutPath": "res"
}
}