-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.17 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
{
"author": "webstrand",
"description": "",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"chai": "^4.2.0",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.3",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=14.4.0"
},
"license": "(MIT OR 0BSD OR CC0)",
"main": "build/index.js",
"name": "modular-typescript-starter",
"private": true,
"scripts": {
"build": "tsc",
"dev": "tsc && concurrently --kill-others npm:watch-build npm:watch-start",
"lint": "eslint . --ext .ts,.tsx,.json",
"start": "node -r source-map-support/register --experimental-specifier-resolution=node build/index.js",
"test": "tsc && mocha -r source-map-support/register --experimental-specifier-resolution=node 'build/**/*.spec.js'",
"watch-build": "tsc --watch --preserveWatchOutput",
"watch-start": "nodemon -r source-map-support/register --experimental-specifier-resolution=node build/index.js"
},
"type": "module",
"version": "0.0.0"
}