-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 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
{
"name": "my-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"build": "tsc",
"start": "node dist/server.js",
"start:dev": "nodemon --watch 'src/**' --ext 'ts' --exec 'ts-node src/server.ts'",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "T.M.",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^6.0.0",
"@types/helmet": "^4.0.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.7",
"@types/supertest": "^2.0.11",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-rate-limit": "^6.3.0",
"helmet": "^5.0.2",
"winston": "^3.3.3"
}
}