-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.86 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
71
72
73
{
"name": "@snakeroom/quasiplace",
"version": "1.0.0",
"private": true,
"description": "An implementation of r/Place that is compatible with the Mona Lisa frontend.",
"main": "./src/index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn ./src/index.ts",
"lint": "eslint \"./**/*.ts\" --ignore-path .gitignore",
"start": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Snakeroom/Quasiplace.git"
},
"keywords": [
"place",
"server"
],
"author": "haykam821",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Snakeroom/Quasiplace/issues"
},
"homepage": "https://github.com/Snakeroom/Quasiplace#readme",
"dependencies": {
"@apollo/server": "^4.5.0",
"@graphql-tools/schema": "^9.0.17",
"body-parser": "^1.20.2",
"canvas": "^2.11.2",
"debug": "^4.3.4",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"graphql": "^16.7.1",
"graphql-subscriptions": "^2.0.0",
"lru-cache": "^10.0.0",
"nanoid": "^3.3.6",
"subscriptions-transport-ws": "^0.11.0",
"supports-color": "^9.3.1",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/fs-extra": "^11.0.1",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.43.0",
"eslint-config-haykam": "^1.19.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.2"
},
"eslintConfig": {
"extends": [
"eslint-config-haykam",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"semi": "off",
"@typescript-eslint/semi": "error",
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error",
"sort-imports": "error"
}
}
}