-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 988 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 988 Bytes
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
{
"name": "ts-node-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -p .",
"start": "npm run build && NODE_ENV=production node lib/index.js",
"start:dev": "ts-node-dev --respawn src/index.ts",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json",
"lint": "eslint -c .eslintrc.js --ext .ts src/**"
},
"keywords": [],
"author": "Christophe Ha",
"license": "ISC",
"dependencies": {
"jasmine": "^4.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"typescript-logging": "^2.0.1",
"typescript-logging-category-style": "^2.0.1",
"typescript-logging-log4ts-style": "^2.0.1"
},
"devDependencies": {
"@types/jasmine": "^4.0.2",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-plugin-import": "^2.20.2",
"ts-node-dev": "^1.1.8"
}
}