-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 981 Bytes
/
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
{
"dependencies": {
"ts-node": "^10.9.1"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"eslint": "eslint --ext .ts --ignore-path .gitignore src/",
"lint": "npm run eslint",
"fix": "npm run eslint -- --fix",
"serve": "nodemon --watch src/ --ext \"ts,json\" --exec \"npm run start\"",
"build": "webpack",
"test": "npm run jest",
"jest": "jest"
},
"devDependencies": {
"@babel/preset-typescript": "^7.21.4",
"@jest/globals": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.40.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"tcs": "^10.0.2",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2"
}
}