-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.25 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
{
"name": "@secretarium/connector-rest-relay",
"description": "Example relay application for Secretarium Connector",
"version": "0.0.4",
"main": "index.js",
"repository": "https://github.com/secretarium/connector-rest-relay.git",
"author": "Florian Guitton <[email protected]>",
"license": "MIT",
"private": true,
"packman": "[email protected]",
"scripts": {
"preinstall": "node ./scripts/hintYarn.js",
"start": "dotenv node ./build/index.js",
"dev": "dotenv nodemon index.ts",
"build": "tsc --project ./",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@secretarium/connector": "0.11.1",
"dotenv-cli": "4.0.0",
"express": "4.17.1",
"ws": "8.2.2"
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/node": "16.9.1",
"@typescript-eslint/eslint-plugin": "4.31.1",
"@typescript-eslint/parser": "4.31.1",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "24.4.0",
"nodemon": "2.0.12",
"ts-node": "10.2.1",
"typescript": "4.4.3"
}
}