-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "ta-api",
"version": "0.1.1",
"main": "build/index.js",
"repository": "[email protected]:ta-assistant/TA-API.git",
"author": "Siratee K. <[email protected]>",
"license": "MIT",
"dependencies": {
"better-logging": "^4.5.0",
"chalk": "^4.1.1",
"express": "^4.17.1",
"firebase-admin": "^9.8.0",
"validatorjs": "^3.22.1",
"typescript": "^4.2.4"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.2",
"@types/validatorjs": "^3.15.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"prettier": "2.3.0",
"ts-node": "^9.1.1",
"tslint-config-prettier": "^1.18.0"
},
"scripts": {
"lint": "eslint . --ext .ts",
"start": "node .",
"build": "tsc",
"dev": "tsc && node .",
"test": "mocha -r ts-node/register tests/**/*.test.ts --timeout 100000",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
}
}