-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "node-template",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "set NODE_ENV=development&& nodemon",
"build": "rimraf dist && tsc",
"start": "set NODE_ENV=production&& node .",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "set NODE_ENV=test&& jest --verbose",
"test:watch": "jest --coverage --watchAll"
},
"keywords": [],
"author": "Zohar Levin",
"license": "ISC",
"dependencies": {
"dotenv": "^14.2.0",
"express": "^4.17.2",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.5",
"@types/request": "^2.48.7",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-jest": "^27.4.5",
"eslint": "^8.5.0",
"jest": "^27.4.5",
"jest-cli": "^27.4.5",
"prettier": "^2.5.1",
"request": "^2.88.2",
"supertest": "^6.1.6",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}