-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "nodets-dawn-api",
"version": "1.0.0",
"description": "Dawn of NodeTS API",
"main": "index.js",
"scripts": {
"start": "node dist/server",
"build": "npm run build-ts && npm run lint",
"build-ts": "tsc -p .",
"lint": "tslint src/**/*.ts",
"watch": "ts-node-dev --respawn --transpile-only ./src/server.ts",
"test": "jest --forceExit --coverage --verbose --detectOpenHandles",
"test-watch": "jest --forceExit --coverage --verbose --detectOpenHandles --watchAll"
},
"keywords": [
"NodeTS",
"API"
],
"author": "Zaki Mohammed",
"license": "ISC",
"dependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.7",
"@types/uuid": "^8.3.0",
"cache-manager": "^3.4.0",
"cache-manager-fs": "^1.0.8",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mssql": "^6.2.1",
"uuid": "^8.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cache-manager": "^2.10.3",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.12",
"@types/jsonwebtoken": "^8.5.0",
"@types/mssql": "^6.0.4",
"@types/node": "^14.6.2",
"jest": "^26.4.2",
"ts-jest": "^26.3.0",
"ts-node-dev": "^1.0.0-pre.61",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
}
}