-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.54 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "typescript-node-starter",
"version": "1.0.0",
"description": "",
"author": "Espen Strømland",
"license": "MIT",
"main": "./build/main/index.js",
"scripts": {
"prestart": "run-s clean",
"start": "run-p build:watch serve",
"serve": "nodemon",
"prebuild": "run-s -l clean lint",
"build": "run-p -l build:babel types",
"build:babel": "babel src --env-name build --out-dir build --extensions '.ts'",
"build:watch": "npm run build:babel -- --watch",
"types": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint --ext .ts ./src",
"lint:fix": "eslint --fix --ext .ts ./src",
"clean": "rimraf build *.tgz coverage"
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "7.18.13",
"@babel/preset-env": "7.18.10",
"@babel/preset-typescript": "7.18.6",
"@types/jest": "28.1.8",
"@types/node": "18.7.13",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.0.1",
"nodemon": "2.0.19",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"typescript": "4.7.4"
},
"overrides": {
"shell-quote": "1.7.3"
},
"prettier": {
"singleQuote": true
},
"nodemonConfig": {
"runOnChangeOnly": true,
"watch": "build/**/*",
"exec": "node build/setupDevelopment.js",
"delay": 200,
"ext": "*.js"
}
}