-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 KB
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
{
"name": "UnityWebServer",
"version": "1.0.0",
"description": "Communicating with Unity Server",
"main": "dist/server.js",
"repository": "https://github.com/valkyrienyanko/Unity-ENet-Model",
"author": "valkyrienyanko",
"license": "MIT",
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mysql-promisify": "^1.0.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.1",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.4",
"promise-mysql": "^4.1.3",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
},
"scripts": {
"dev:start": "yarn build && yarn start",
"start": "node .",
"build": "tsc",
"lint": "eslint . --fix --ext .ts"
}
}