-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "tabletopts",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"start": "export NODE_ENV=development && ts-node-dev --respawn ./src/router.ts",
"start:prod": "export NODE_ENV=production && ts-node ./src/router.ts",
"lint": "eslint './src/**/*.{js,ts}'",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"@colyseus/schema": "^0.5.41",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/lodash": "^4.14.162",
"@types/seedrandom": "^2.4.28",
"colyseus": "=0.12.2",
"colyseus.js": "=0.12.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"esbuild": "^0.7.16",
"express": "^4.17.1",
"lodash": "^4.17.20",
"phaser": "^3.24.1",
"seedrandom": "^3.0.5",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"@colyseus/monitor": "^0.12.2",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "6.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"node-watch": "^0.7.0",
"prettier": "^2.0.5",
"ts-node-dev": "^1.0.0-pre.65"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{js,ts}": [
"yarn eslint --max-warnings=0 --fix"
]
}
}