-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.61 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "trader",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"exec": "node dist/index.js",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepare": "husky install",
"pretest": "npx eslint --ignore-path .gitignore . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crypt0p1a/trade.git"
},
"author": "codlab",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/crypt0p1a/trade/issues"
},
"homepage": "https://github.com/crypt0p1a/trade#readme",
"dependencies": {
"@types/sqlite3": "^3.1.6",
"bignumber.js": "^9.0.0",
"cexio-api-node": "git+https://github.com/codlab/cexio-api-node.git",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"moment": "^2.29.1",
"sqlite3": "^4.1.1",
"tslib": "^1.10.0",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"prettier": "^2.5.1"
},
"husky": {
"hooks": {
"pre-commit": "tsc && lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css,less,ejs}": [
"prettier --write"
]
}
}