-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1008 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"scripts": {
"start": "node server_src/index.js",
"build": "node build.js",
"clean": "del /S /Q build_state.json",
"build_clean": "npm run-script clean && npm run-script build"
},
"author": "SilentGamzee",
"devDependencies": {
"@babel/core": "latest",
"@babel/plugin-proposal-class-properties": "latest",
"@babel/preset-env": "latest",
"@babel/preset-typescript": "latest",
"babel-preset-minify": "^0.5.0-alpha.3cc09dcf",
"eslint": "latest",
"ajv": "latest",
"body-parser": "latest",
"express": "latest"
},
"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"
}
}
}