-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.14 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
{
"name": "server",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"start": "nodemon --exec ts-node src/server.ts",
"test": "jest --passWithNoTests --updateSnapshot",
"eslint:check": "eslint --max-warnings=0 './**/*.{js,ts,tsx}' --resolve-plugins-relative-to . --config .eslintrc.js",
"eslint:fix": "eslint --fix './**/*.{js,ts,tsx}' --resolve-plugins-relative-to . --config .eslintrc.js",
"prettier:check": "prettier --check './**/*.{js,ts,tsx,yml,md}'",
"prettier:fix": "prettier --write './**/*.{js,ts,tsx,yml,md}'"
},
"dependencies": {
"axios": "^1.6.8",
"express": "^4.19.2"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"dotenv": "^16.4.5",
"eslint": "8.54.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.2.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "5.3.2"
}
}