-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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": "project-iana",
"version": "0.0.1",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"serve": "node dist/index.js",
"dev": "nodemon src/index.ts",
"lint-staged": "lint-staged",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write --list-different .",
"test": "cross-env NODE_ENV=test jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@jest/globals": "^29.7.0",
"@tsconfig/node20": "^20.1.4",
"@types/express": "^4.17.21",
"@types/node": "^20.14.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.4.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"nodemon": "^3.1.3",
"prettier": "^3.3.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0"
}
}