-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.02 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "crypto-bot",
"version": "0.0.0",
"private": true,
"scripts": {
"prestart": "babel ./src --out-dir build",
"startdev": "nodemon --exec babel-node ./src/bin/www",
"lint": "./node_modules/.bin/eslint ./src",
"pretty": "prettier --write '**/*.{js,json}' '!node_modules/**'",
"postpretty": "npm lint --fix",
"tsc": "tsc",
"test": "jest --notify --verbose",
"start": "node ./build/bin/www",
"dev": "npm run tsc && NODE_ENV=LOCAL npm start",
"build": "webpack --config webpack.config.js"
},
"dependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.12.3",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/register": "^7.10.5",
"@babel/runtime": "^7.11.2",
"@crypto-tracker/common-types": "^1.6.5",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.7",
"@types/express-session": "^1.17.0",
"@types/ioredis": "^4.22.0",
"@types/jest": "^26.0.15",
"@types/morgan": "^1.9.1",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.2.6",
"app-root-path": "^3.0.0",
"axios": "^0.19.2",
"bignumber.js": "^9.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"http-errors": "~1.6.3",
"i": "^0.3.6",
"ioredis": "^4.24.2",
"isomorphic-ws": "^4.0.1",
"jest": "^26.6.3",
"morgan": "~1.9.1",
"nodemon": "^2.0.4",
"npm": "^6.14.7",
"prettier": "^2.0.5",
"sqs-consumer": "^5.5.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.18",
"typescript": "^3.9.7",
"uuid": "^8.3.0",
"ws": "^7.3.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"ts-node-dev": "^1.0.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
}
}