-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 3.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "prisel-mono",
"version": "0.0.0",
"private": true,
"description": "Online prisel game",
"homepage": "https://github.com/SeawolvesAtCali/prisel#readme",
"bugs": {
"url": "https://github.com/SeawolvesAtCali/prisel/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SeawolvesAtCali/prisel.git"
},
"license": "MIT",
"author": "",
"scripts": {
"automation": "node common/scripts/install-run-rush.js automation --verbose",
"install": "node common/scripts/install-run-rush.js install",
"build": "node common/scripts/install-run-rush.js rebuild --verbose",
"build:tic-tac-toe": "node common/scripts/install-run-rush.js build --to @prisel/tic-tac-toe-client",
"clean": "node common/scripts/install-run-rush.js clean",
"deploy:server": "cd packages/tic-tac-toe && node ../../common/scripts/install-run-rushx.js start",
"fix": "node common/scripts/install-run-rush.js fix",
"lint": "node common/scripts/install-run-rush.js lint",
"prepublishOnly": "npm ci && npm run build && npm run lint",
"publish": "echo no implemented",
"start:debugger": "cd packages/react && node ../../common/scripts/install-run-rushx.js start",
"start:map-creator": "cd packages/map-creator && node ../../common/scripts/install-run-rushx.js start",
"start:monopoly-server": "cd packages/monopoly && node ../../common/scripts/install-run-rushx.js start",
"start:server": "cd packages/server && node ../../common/scripts/install-run-rushx.js start",
"start:tic-tac-toe-client": "cd packages/tic-tac-toe-client && node ../../common/scripts/install-run-rushx.js start",
"start:tic-tac-toe-server": "cd packages/tic-tac-toe && node ../../common/scripts/install-run-rushx.js start",
"test": "node common/scripts/install-run-rush.js test --verbose"
},
"prettier": {
"arrowParens": "always",
"printWidth": 100,
"proseWrap": "always",
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
},
"eslintConfig": {
"env": {
"jest": true
},
"parser": "babel-eslint",
"extends": [
"airbnb-base",
"plugin:prettier/recommended"
],
"rules": {
"class-methods-use-this": "off",
"global-require": "off",
"no-case-declarations": "off",
"no-console": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-unused-expressions": [
"error",
{
"allowShortCircuit": true
}
],
"no-unused-vars": [
"error",
{
"vars": "local",
"args": "none",
"varsIgnorePattern": "debug"
}
],
"import/no-dynamic-require": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
]
}
}
}