-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "thumbs-backend",
"version": "1.0.0",
"description": ".",
"main": "dist/app.js",
"directories": {
"example": "example"
},
"scripts": {
"start": "rm -rf dist && tsc && node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"apidoc": "apidoc -i src/ -o apidoc/ -e node_modules/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thumbs-project/thumbs-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/thumbs-project/thumbs-backend/issues"
},
"homepage": "https://github.com/thumbs-project/thumbs-backend#readme",
"dependencies": {
"express": "^4.16.4",
"firebase-admin": "^6.4.0",
"http-errors": "^1.7.1",
"morgan": "^1.9.1",
"mysql": "^2.16.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/http-errors": "^1.6.1",
"@types/node": "^10.12.18",
"should": "^13.2.3",
"supertest": "^3.3.0",
"typescript": "^3.2.2"
}
}