-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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
{
"name": "map-callouts-mod",
"description": "A package that simplifies the many steps that go into creating a map overviews texture mod for the Steam Workshop.",
"author": "Maxim Devoir <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "cross-env BUILD_FOR_PRODUCTION=true node source/scripts/build.js",
"clean": "rm -rf source/externals && rm -rf node_modules && rm -rf build",
"devBuild": "cross-env BUILD_FOR_PRODUCTION=false node source/scripts/build.js",
"preinstall": "node source/scripts/preinstall.js",
"prestart": "node source/scripts/precheck.js",
"start": "node source/scripts/watch.js",
"start:imitateProd": "cross-env BUILD_FOR_PRODUCTION=true node source/scripts/watch.js"
},
"dependencies": {
"arch": "^2.1.1",
"btoa": "^1.2.1",
"chalk": "^2.4.2",
"child-process-promise": "^2.2.1",
"chokidar": "^3.0.0",
"classnames": "^2.2.6",
"convert-svg-to-png": "^0.5.0",
"cross-env": "^5.2.0",
"cross-spawn": "^7.0.1",
"detect-newline": "^2.1.0",
"dotenv": "^7.0.0",
"download": "^7.1.0",
"find": "^0.3.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"inquirer": "^6.2.2",
"is-directory": "^0.3.1",
"is-file": "^1.0.0",
"js-beautify": "^1.9.0",
"pretty-data2": "^0.40.1",
"replace-in-file": "^3.4.4",
"shelljs": "^0.8.3",
"simple-vdf": "^1.1.1",
"svgson": "^3.1.0",
"which": "^1.3.1"
},
"devDependencies": {
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0"
}
}