This repository has been archived by the owner on Dec 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "pick-a-park-api",
"version": "0.0.1",
"description": "API for the pick a park project",
"main": "src/index.ts",
"scripts": {
"dev": "ts-node-dev --respawn --transpileOnly src/index.ts",
"prod": "ts-node --transpile-only src/index.ts",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"coverage": "nyc npm run test",
"coverage:html": "nyc --reporter=html npm run test",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ByPassaRe/Pick-a-park-api.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ByPassaRe/Pick-a-park-api/issues"
},
"homepage": "https://github.com/ByPassaRe/Pick-a-park-api#readme",
"dependencies": {
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.2",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"body-parser": "^1.19.0",
"boolean": "^3.0.0",
"express": "^4.17.1",
"mysql": "^2.17.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.5.2",
"typeorm": "^0.2.20",
"typescript": "^3.7.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.2.5",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.5.1",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sinon": "^7.5.0",
"ts-node-dev": "^1.0.0-pre.44"
}
}