-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.8 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.8 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
55
56
57
{
"name": "typescript-realworld-backend",
"version": "0.1.0",
"description": "A back-end based on the RealWorld API spec using Typescript, PostgreSQL, Node, Express, and Docker.",
"main": "src/index.ts",
"scripts": {
"start": "node build/app.js",
"prestart": "npm run tsc",
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"test:api": "APIURL=http://localhost:3000/api ./scripts/run-api-tests.sh",
"test": ". ./test_env.sh && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjftw/realworld-typescript-backend.git"
},
"keywords": [
"realworld-backend",
"typescrpt",
"nodejs",
"postgresql",
"expressjs",
"docker"
],
"author": "Merlin Webster",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mjftw/realworld-typescript-backend/issues"
},
"homepage": "https://github.com/mjftw/realworld-typescript-backend#readme",
"devDependencies": {
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.18",
"@types/json-schema": "^7.0.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/pg": "^7.14.7",
"eslint": "^7.14.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@types/express-jwt": "0.0.42",
"@types/express-unless": "^0.5.1",
"express": "^4.17.1",
"express-json-validator-middleware": "^2.1.1",
"express-jwt": "^6.0.0",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.5.1",
"ts-jest": "^26.4.4"
}
}