-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.94 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
{
"name": "manchester",
"description": "It's another game!",
"license": "BSD-3-Clause",
"scripts": {
"buildServer": "npx ts-node --transpile-only src/cli/build/buildServer.ts",
"dev": "npx ts-node --transpile-only src/cli/build/dev.ts",
"devServer": "node out/server/server.js",
"typecheck": "tsc -p . --noEmit",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest",
"clean": "rm -rf out .cache dist out"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffanddom/manchester.git"
},
"browser": {
"perf_hooks": "./src/browserShims/perf_hooks.ts"
},
"dependencies": {
"file-saver": "^2.0.2",
"gl-matrix": "^3.3.0",
"koa": "^2.13.0",
"koa-router": "^9.4.0",
"koa-send": "^5.0.1",
"lodash": "^4.17.19",
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0",
"react-is": ">= 16.8.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@types/events": "^3.0.0",
"@types/file-saver": "^2.0.1",
"@types/gl-matrix": "^2.4.5",
"@types/jest": "^25.2.3",
"@types/koa": "^2.11.4",
"@types/koa-router": "^7.4.1",
"@types/koa-send": "^4.1.2",
"@types/lodash": "^4.14.152",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.0",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"aws-sdk": "^2.809.0",
"chokidar": "^3.4.3",
"esbuild": "^0.8.28",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"glslify-bundle": "^5.1.1",
"glslify-deps": "^1.3.1",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"typescript": "^3.8.3"
}
}