-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
61 lines (61 loc) · 1.18 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
61
{
"private": true,
"scripts": {
"start": "node server_src/index.js",
"build": "node build.js",
"build_vpk": "java -jar Source2Compiler.jar \"C:/Games/Steam/steamapps/common/dota 2 beta\" Corona src_compiled",
"clean": "del /S /Q build_state.json",
"build_clean": "npm run-script clean && npm run-script build"
},
"author": "snajdovski",
"contributors": [
"snajdovski",
"EmptyCrew",
"I_GRIN_I"
],
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/plugin-proposal-class-properties": "7.10.1",
"@babel/preset-env": "7.10.2",
"@babel/preset-typescript": "7.10.1",
"ajv": "6.12.2",
"babel-preset-minify": "0.5.0-alpha.3cc09dcf",
"body-parser": "1.19.0",
"eslint": "7.1.0",
"express": "4.17.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 8
},
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"no-empty": [
"error",
{
"allowEmptyCatch": true
}
],
"brace-style": [
"error",
"1tbs",
{
"allowSingleLine": true
}
],
"no-fallthrough": "off",
"no-console": "off"
}
}
}