-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.34 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.34 KB
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
{
"name": "typescript-starter",
"version": "0.0.1",
"description": "Starter project for Typescript Node script",
"scripts": {
"build": "npm run build-ts && npm run lint",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"build-ts": "rimraf ./build && webpack --config webpack.config.js --mode development",
"build-prod": "rimraf ./build && webpack --config webpack.config.js --mode production",
"test": "echo \"Error: no test specified\" && exit 1",
"watch-node": "nodemon dist/main.js",
"watch-ts": "tsc -w",
"start": "node dist/main.js",
"serve-debug": "nodemon --inspect dist/main.js",
"debug": "npm run build && npm run watch-debug",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"winston": "^3.8.2"
},
"devDependencies": {
"@types/node": "^18.7.21",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.28.0",
"concurrently": "^7.4.0",
"eslint": "^8.24.0",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}