-
Notifications
You must be signed in to change notification settings - Fork 153
/
package.json
53 lines (53 loc) · 2 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
{
"name": "covey-town",
"version": "1.0.0",
"description": "Development setup",
"main": "index.js",
"scripts": {
"install": "cd townService && npm install && npm run prestart && cd ../shared && npm install",
"heroku-postbuild": "cd townService && CI=false NODE_ENV=development npm install && npm run build",
"run-townservice": "heroku local -p 3001 web",
"lint": "cd townService && npm run-script lint && cd ../frontend && npm run-script lint && cd ../shared && npm run-script lint",
"zip": "npm-pack-zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neu-se/covey.town.git"
},
"author": "Jonathan Bell",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/neu-se/covey.town/issues"
},
"homepage": "https://github.com/neu-se/covey.town#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.13.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"npm-pack-zip": "^1.3.0",
"prettier": "^2.1.2",
"prettier-plugin-organize-imports": "^1.1.1",
"typescript": "^4.9.5"
},
"engines": {
"node": "18.x.x",
"npm": "9.x.x"
},
"dependencies": {
"@types/ramda": "^0.27.34",
"ramda": "^0.27.1",
"typescript-is": "^0.17.0"
},
"files": [
"frontend/src/classes/interactable/ConnectFourAreaController.ts",
"frontend/src/classes/interactable/InteractableAreaController.ts",
"frontend/src/components/Town/interactables/ConnectFour/ConnectFourArea.tsx",
"frontend/src/components/Town/interactables/ConnectFour/ConnectFourBoard.tsx",
"frontend/src/components/Town/interactables/GamesArea.tsx",
"frontend/src/components/SocialSidebar/InteractableAreasList.tsx"
]
}