generated from YukiYuigishi/ts-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.51 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
50
{
"name": "ts-project",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node src/index.ts",
"dev:watch": "ts-node-dev --respawn src/index.ts",
"clean": "rimraf dist/*",
"tsc": "tsc",
"build": "npm-run-all clean tsc",
"start": "node dist/index.js",
"lint": "eslint --ignore-path .gitignore 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint --ignore-path .gitignore 'src/**/*.{ts,tsx}' --fix",
"format": "prettier --write src/**/*.{ts,tsx}",
"test": "jest"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.0",
"@types/node": "16",
"@types/nodemailer": "^6.4.6",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.1",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"dependencies": {
"axios": "^1.1.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.2",
"form-data": "^4.0.0",
"mailgun.js": "^8.0.6",
"nodemailer": "^6.8.0"
}
}