-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 994 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 994 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
{
"name": "nodejs-typescript-boilerplate",
"version": "1.0.0",
"description": "Nodejs base typescript project. Fork this project to start new typescript project.",
"main": "index.js",
"repository": "git@github.com:MaxTibs/nodejs-typescript-boilerplate.git",
"author": "Maxime Thibault <maxime.thibault.dev@gmail.com>",
"license": "MIT",
"scripts": {
"start": "nodemon index.ts",
"start:prod": "yarn run build && node build/index.js",
"build": "rimraf ./build && tsc",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}