-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 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
58
{
"name": "decoder-android",
"version": "1.0.0",
"description": "Native android crash trace decoder for clash of streamers",
"scripts": {
"dev": "cross-env FASTIFY_PORT=3000 NODE_ENV=development nodemon",
"dist": "rimraf ./dist && tsc",
"test": "yarn jest",
"format": "prettier --write \"**/*.ts\"",
"production-docker": "node ./dist/index",
"production-local": "yarn dist && cross-env HUMAN_LOGS=true NODE_ENV=production node ./dist/index",
"docker:build": "docker build -t android_backtrace_decoder:latest .",
"docker:run": "docker run --rm -t android_backtrace_decoder:latest"
},
"author": "Troy",
"license": "MIT",
"dependencies": {
"@rauschma/stringio": "^1.4.0",
"@types/md5": "^2.1.33",
"ajv": "^6.10.2",
"aws-sdk": "^2.481.0",
"axios": "^0.19.0",
"delay": "^4.3.0",
"dotenv": "^8.0.0",
"env-cmd": "^10.0.1",
"fs-extra": "^8.1.0",
"klaw-sync": "^6.0.0",
"lodash": "^4.17.15",
"luxon": "^1.19.3",
"md5": "^2.2.1",
"pino": "^5.13.4",
"pino-pretty": "^3.2.2",
"resumer": "^0.0.0",
"tiny-glob": "^0.2.6"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.18",
"@types/json-schema": "^7.0.3",
"@types/klaw-sync": "^6.0.0",
"@types/lodash": "^4.14.136",
"@types/luxon": "^1.15.2",
"@types/node": "^12.0.10",
"@types/pino": "^5.8.8",
"@types/shelljs": "^0.8.5",
"cross-env": "^5.2.0",
"jest": "^24.9.0",
"nodemon": "^1.18.9",
"prettier": "^1.18.2",
"rimraf": "^2.6.2",
"shelljs": "^0.8.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.7.0",
"typescript": "^3.5.2"
}
}