-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.36 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
{
"private": true,
"name": "capswalk",
"version": "0.12.0",
"description": "A multiplayer typing game for learning written languages.",
"keywords": [
"typing",
"game"
],
"license": "LicenseRef-LICENSE.md",
"author": "David Fong (https://github.com/david-fong)",
"repository": "github:david-fong/capswalk",
"type": "module",
"files": [],
"sideEffects": [
"*.css"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"devinit": "bash scripts/devinit.sh",
"tsc": "tsc -b",
"lint": "eslint --cache --cache-location './node_modules/.cache/eslint-cache.json' './src/'",
"build": "node --disable-proto=delete --title='capswalk-build' -- ./scripts/webpack/pack.js",
"test": "node --enable-source-maps --disable-proto=delete --title='capswalk-test' -- ./dist/server/test/lang.js",
"serve": "node --enable-source-maps --disable-proto=delete --title='capswalk-server' -- ./dist/server/index.js"
},
"dependencies": {
"koa": "^2.14.2",
"koa-static": "^5.0.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/koa": "^2.13.9",
"@types/koa-static": "^4.0.2",
"@types/node": "^18.18.4",
"@types/ws": "^8.5.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.51.0",
"typescript": "^5.2.2",
"typescript-plugin-css-modules": "^5.0.1"
}
}