-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.45 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
{
"name": "node-typescript-structure",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"config": {
"main_dev": "src/server.ts",
"main_prod": "dist/server.js",
"jest": "--coverage --passWithNoTests --ci --verbose --forceExit --detectOpenHandles --colors",
"integration_config": "-i -c integration.config.js"
},
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"prestart": "$npm_package_scripts_build",
"start": "node $npm_package_config_main_prod",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify $npm_package_config_main_dev",
"test": "jest $npm_package_config_jest",
"test:integration": "jest $npm_package_config_integration_config $npm_package_config_jest"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3"
},
"dependencies": {}
}