forked from Roguelike-Celebration/azure-mud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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": "azure-mud",
"version": "1.0.0",
"description": "",
"homepage": "https://lazerwalker.com/azure-mud",
"main": "index.js",
"scripts": {
"dev": "parcel *.html",
"build": "parcel build *.html; cp CNAME dist; rsync -r images dist",
"deploy": "npm run build; cp CNAME dist; gh-pages -d dist",
"deploy-server": "pushd ./functions; npm run deploy; popd",
"typecheck": "tsc --noEmit",
"lint": "eslint src/**/**/* server/**/*.ts",
"lint-fix": "eslint src/**/**/* server/**/*.ts --fix",
"lint-rooms": "ts-node lintLinks.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aspnet/signalr": "^1.1.4",
"axios": "^0.19.2",
"node-emoji": "^1.10.0",
"react": "^16.13.1",
"react-contextmenu": "^2.14.0",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"react-linkify": "^1.0.0-alpha",
"react-tooltip": "^4.2.8",
"request": "^2.88.2",
"simple-peer": "^9.7.2",
"ts-node": "^9.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.158",
"@types/react": "^16.9.43",
"@types/redis": "^2.8.25",
"@types/react-dom": "^16.9.8",
"@types/simple-peer": "^9.6.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^3.1.0",
"parcel": "^1.12.4",
"typescript": "^3.9.2"
}
}