-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 976 Bytes
/
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
{
"name": "asciimmo",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"start": "cp -r views/. dist/public && node dist/app/src/app.js",
"compile": "tsc -p ./src && tsc -p ./client && cp -r views/. dist/public",
"client": "tsc -p ./client && cp -r views/. dist/public",
"cw": "tsc -w -p ./client",
"sw": "tsc -w -p ./src",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist"
},
"author": "",
"license": "",
"devDependencies": {
"@types/express": "^4.16.1",
"@types/socket.io": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express-ws": "^3.0.0",
"@types/mongoose": "^5.11.97",
"bcrypt": "^5.0.1",
"express": "^4.16.4",
"express-ws": "^5.0.2",
"mongoose": "^5.13.3"
}
}