-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 947 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 947 Bytes
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
{
"name": "api",
"version": "0.0.1",
"description": "Pasante's API for database interactions.",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^8.0.29",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"ts-node": "3.3.0",
"typescript": "3.3.3333"
},
"dependencies": {
"typeorm": "0.2.31",
"reflect-metadata": "^0.1.10",
"mysql": "^2.14.1"
},
"scripts": {
"start": "ts-node src/index.ts",
"lint": "eslint \"src/**/*.ts\" --quiet --fix",
"format": "prettier --write \"src/**/*.ts\"",
"build": "tsc",
"test": "jest --config jestconfig.json"
},
"license": "MIT"
}