This repository was archived by the owner on Jan 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.84 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.84 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
58
59
60
61
62
63
64
65
66
{
"name": "pingpong-api",
"version": "0.0.1",
"description": "Ping Pong app API developed by Bytecode",
"main": "index.js",
"repository": "https://github.com/BytecodeOpenSource/PingPong-API",
"author": "Luciano Nooijen <luciano@bytecode.nl>",
"license": "AGPL-3.0-only",
"private": false,
"keywords": [
"pingpong",
"ping",
"pong",
"api",
"scores"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"dev": "NODE_ENV=development nodemon",
"start": "NODE_ENV=production ts-node server/server.ts",
"build": "yarn run clean && tsc --build",
"lint": "yarn run clean & yarn run lint:ts & yarn run lint:prettier",
"lint:ts": "tslint --project tsconfig.json",
"lint:prettier": "prettier '**/*.ts' 1>/dev/null",
"test": "NODE_ENV=test jest -i",
"test:watch": "NODE_ENV=test jest -i --watch",
"coverage": "NODE_ENV=test jest -i --coverage",
"reinstall": "rm -rf node_modules && yarn",
"clean": "rm -rf dist build coverage"
},
"dependencies": {
"@types/express": "^4.16.1",
"express": "^4.16.4",
"helmet": "^3.15.1",
"knex": "^0.16.3",
"morgan": "^1.9.1",
"pg": "^7.8.2",
"response-time": "^2.3.2",
"ts-node": "^8.0.2",
"typescript": "^3.3.3333",
"yarn": "^1.13.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/helmet": "^0.0.42",
"@types/jest": "^24.0.9",
"@types/knex": "^0.15.2",
"@types/morgan": "^1.7.35",
"@types/node": "^11.10.4",
"@types/supertest": "^2.0.7",
"bcrypt": "^3.0.4",
"jest": "^24.1.0",
"jwt-simple": "^0.5.5",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"prettierrc": "^0.0.0-5",
"sqlite3": "^4.0.6",
"supertest": "^3.4.2",
"ts-jest": "^24.0.0",
"tslint": "^5.13.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0"
}
}