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
|
{
"name": "keymap-editor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "cd application && npm install",
"start": "node index.js",
"dev": "ENABLE_DEV_SERVER=true node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.4",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"http-link-header": "^1.0.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0"
}
}
|