-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.94 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.94 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "node-tlcv",
"version": "0.1.0",
"description": "Backend Server for viewing TLCV chess games.",
"engines": {
"node": ">= 18"
},
"dependencies": {
"async-lock": "^1.4.0",
"chalk": "^4.1.2",
"chart.js": "^4.5.1",
"chess.js": "^1.0.0-beta.6",
"chessboardjs": "^0.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dayjs": "^1.11.9",
"dotenv": "^10.0.0",
"ejs": "^3.1.7",
"express": "^4.22.1",
"express-basic-auth": "^1.2.0",
"jquery": "^3.6.0",
"mini.css": "^3.0.1",
"mkdirp": "^3.0.1",
"on-finished": "^2.3.0",
"reset-css": "^5.0.1",
"serve-index": "^1.9.1",
"slugify": "^1.6.6",
"socket.io": "^4.6.1",
"socket.io-client": "^4.7.1",
"ssh2": "^1.17.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/async-lock": "^1.4.0",
"@types/compression": "^1.7.1",
"@types/cors": "^2.8.12",
"@types/ejs": "^3.0.7",
"@types/express": "^4.17.13",
"@types/jquery": "^4.0.0",
"@types/node": "^20.4.1",
"@types/on-finished": "^2.3.1",
"@types/serve-index": "^1.9.1",
"@types/ssh2": "^1.15.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.14",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^8.0.0",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"mini-css-extract-plugin": "^2.7.6",
"nodemon": "^3.0.1",
"postcss-loader": "^7.3.3",
"prettier": "~2.3.2",
"raw-loader": "^4.0.2",
"rimraf": "~3.0.2",
"sass": "^1.97.3",
"sass-loader": "^16.0.7",
"terser-webpack-plugin": "^5.3.17",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"webpack": "^5.105.3",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
},
"scripts": {
"build": "tsc -p tsconfig.backend.json",
"clean": "rimraf build",
"dev-public": "webpack --watch --progress --config webpack/webpack.dev.js",
"dev-server": "TS_NODE_PROJECT=tsconfig.backend.json nodemon --legacy-watch --watch src --watch shared -x node --loader ts-node/esm src/main.ts",
"format": "prettier --write {src,public,shared}/**/*.{ts,css,scss,html}",
"prebuild": "webpack --config webpack/webpack.prod.js",
"lint": "eslint --fix src public shared",
"start": "node build/src/main.js",
"test": "echo OK",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"{public,shared}/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"{src,public,shared}/**/*.{css,scss,html}": [
"prettier --write"
]
},
"author": "Jay Honnold <jayhonnold@gmail.com>",
"license": "MIT",
"type": "module"
}