-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "fakebackend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpileOnly ./src/server.ts",
"start": "ts-node src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FDSoftware/FakeBackend.git"
},
"author": "FDSoftware",
"license": "MIT",
"bugs": {
"url": "https://github.com/FDSoftware/FakeBackend"
},
"homepage": "https://github.com/FDSoftware/FakeBackend#readme",
"dependencies": {
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.5",
"@types/node": "^13.9.8",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"querystring": "^0.2.0",
"ts-node": "^8.9.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"engines": {
"node": "10.x"
},
"_moduleAliases": {
"@utils": "src/utils",
"@models": "app/models"
}
}