-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
39
40
41
42
43
{
"name": "jsl-server",
"version": "0.0.0",
"description": "Just Save Life Server",
"private": true,
"main": "server.js",
"author": "Timur Shemsedinov <[email protected]>",
"license": "MIT",
"keywords": [
"Just Save Life",
"Medical Information System"
],
"scripts": {
"lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.yml\" \"**/*.ts\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.yml\" \"**/*.ts\"",
"test": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/JustSaveLife/server.git"
},
"bugs": {
"url": "https://github.com/JustSaveLife/server/issues"
},
"homepage": "https://github.com/JustSaveLife",
"engines": {
"node": "^12.9 || 14"
},
"devDependencies": {
"@types/node": "^14.14.37",
"eslint": "^7.23.0",
"eslint-config-metarhia": "^7.0.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.3.1",
"metatests": "^0.7.2",
"prettier": "^2.2.1"
},
"dependencies": {
"impress": "^2.1.1",
"metasql": "^1.0.0"
}
}