-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 KB
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
{
"name": "glide-api",
"version": "1.0.0",
"description": "Glide's API",
"main": "dist/index.js",
"scripts": {
"build": "npm-run-all clean tsc",
"clean": "rimraf dist/*",
"dev": "nodemon --watch src -e ts --exec yarn dev:start",
"dev:start": "npm-run-all build start",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"start": "node .",
"test": "jest",
"tsc": "tsc"
},
"author": {
"name": "Federico Alecci",
"email": "i.am@falecci.dev",
"url": "https://falecci.dev"
},
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.3.2",
"isomorphic-fetch": "^2.2.1",
"reflect-metadata": "^0.1.13",
"supertest": "^4.0.2",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"@types/supertest": "^2.0.10",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
}
}