-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.12 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
{
"name": "manchester",
"description": "It's another game!",
"license": "BSD-3-Clause",
"scripts": {
"buildWeb": "npx ts-node --transpile-only src/cli/build/buildWeb.ts",
"buildServer": "npx ts-node --transpile-only src/cli/build/buildServer.ts",
"dev": "npx ts-node --transpile-only src/cli/build/dev.ts",
"server": "node out/server/main.js",
"typecheck": "tsc -p . --noEmit",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest",
"clean": "rm -rf out src/web/ephemeral"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffanddom/manchester.git"
},
"browser": {
"perf_hooks": "./src/browserShims/perf_hooks.ts"
},
"dependencies": {
"@hapi/hapi": "^20.0.3",
"@hapi/inert": "^6.0.3",
"codemirror": "^5.59.1",
"file-saver": "^2.0.2",
"gl-matrix": "^3.3.0",
"l1-path-finder": "^1.0.0",
"ndarray": "^1.0.19",
"rc-slider": "^9.7.2",
"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/codemirror": "^0.0.106",
"@types/events": "^3.0.0",
"@types/file-saver": "^2.0.1",
"@types/gl-matrix": "^2.4.5",
"@types/hapi__hapi": "^20.0.3",
"@types/hapi__inert": "^5.2.2",
"@types/jest": "^25.2.3",
"@types/ndarray": "^1.0.9",
"@types/node-fetch": "^2.5.10",
"@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.11.2",
"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",
"jest": "^26.0.1",
"node-fetch": "^2.6.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"ts-node": "^9.1.1",
"typescript": "^3.8.3"
}
}