-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.7 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "cryptoget",
"version": "0.6.0",
"description": "a simply api that returns the exchange rate between USD and Token",
"repository": {
"type": "git",
"url": "https://github.com/Crucible-Standard/cryptoget"
},
"bugs": {
"url": "https://github.com/Crucible-Standard/cryptoget/issues"
},
"homepage": "https://github.com/Crucible-Standard/cryptoget#readme",
"license": "GPL-3.0",
"scripts": {
"serve": "node dist/src/server",
"start": "ts-node src/server",
"heroku-start": "ts-node src/server",
"typings": "src/index",
"build": "tsc",
"postbuild": "cp package.json dist/package.json && cd dist && npm install",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage | ./node_modules/.bin/codecov",
"test:lint": "eslint . 'src/**/*.ts'",
"test:lint:fix": "eslint . --fix 'src/**/*.ts'"
},
"dependencies": {
"axios": "^1.7.1",
"body-parser": "^1.20.2",
"compression": "1.7.4",
"express": "^4.19.2",
"moment": "^2.30.1",
"node-fetch": "^2.7.0",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/helmet": "4.0.0",
"@types/jest": "28.1.8",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.61.0",
"codecov": "3.8.3",
"dotenv": "^16.4.5",
"eslint": "8.50.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.2.1",
"jest": "28.1.3",
"prettier": "2.8.8",
"ts-jest": "28.0.8"
}
}