-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 971 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
35
36
37
38
{
"name": "drinx-server",
"version": "0.0.0",
"description": "DrinX server",
"main": "./src/main.ts",
"scripts": {
"build": "echo Compiling... && rm -fr dist/ && tsc && echo Compilation done ! && echo",
"test": "ts-node test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectDrinX/drinx-server.git"
},
"engines": {
"node": "14.* || >=16.*"
},
"keywords": [
"drinx",
"server"
],
"author": "Mathieu Colmon",
"license": "ISC",
"devDependencies": {
"@types/node": "^17.0.18",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"beamio": "github:ProjectDrinX/BeamIO",
"drinx-schemes": "github:ProjectDrinX/drinx-schemes"
}
}