-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.46 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
{
"name": "lotocripto-bot",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon src/server.ts",
"start": "ts-node --transpile-only src/server.ts"
},
"dependencies": {
"@sentry/node": "^6.2.0",
"@sentry/tracing": "^6.2.0",
"axios": "^0.21.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"interval-promise": "^1.4.0",
"moment": "^2.29.1",
"prettier": "^2.1.2",
"puppeteer": "^7.1.0",
"socket.io": "^3.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@tsconfig/node12": "^1.0.7",
"@types/express": "^4.17.9",
"@types/helmet": "^4.0.0",
"@types/moment": "^2.13.0",
"@types/node": "^14.14.6",
"@types/socket.io": "^2.1.13",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "1.1.2",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/!(*test).ts": [
"prettier --write",
"eslint --fix"
]
}
}