-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "node-ts",
"version": "1.0.0",
"description": "A simple node app using typescript",
"main": "server.js",
"scripts": {
"start": "tsc-watch --onSuccess \"node ./build/server.js\" --onFailure \"echo Compilation Failed\" --compiler typescript/bin/tsc",
"build": "tsc",
"test": "echo 'No test found'",
"prod": "node ./build/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emanuelmustea/node-ts.git"
},
"keywords": [
"node",
"typescript"
],
"author": "Emanuel Mustea",
"license": "MIT",
"bugs": {
"url": "https://github.com/emanuelmustea/node-ts/issues"
},
"homepage": "https://github.com/emanuelmustea/node-ts#readme",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.0",
"tsc-watch": "^2.2.1",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"firebase-admin": "^8.9.2",
"jose": "^1.25.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^3.2.0",
"url-join": "^4.0.1"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"singleQuote": false
}
}