-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.29 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
{
"name": "node-ts-template",
"version": "1.0.0",
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/node": "^7.22.19",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@babel/runtime": "^7.23.1",
"@types/express": "^4.17.18",
"@types/node": "^20.8.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"babel-core": "^6.26.3",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-source-map-support": "^2.2.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"scripts": {
"start": "nodemon ./src/app.ts",
"format": "prettier --write \"**/*.+(js|ts|tsx|json|css|md)\"",
"lint": "eslint --ext .js,.ts,.tsx ./src",
"lint:fix": "eslint --ext .js,.ts,.tsx --fix ./src ",
"build": "yarn build:types && yarn build:compile",
"build:compile": "yarn babel src --out-dir build --extensions .ts",
"build:types": "tsc"
}
}