generated from devzolo/nodejs-typescript-project-template
-
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) · 822 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 822 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-napi-project-template",
"version": "1.0.0",
"main": "dist",
"repository": "https://github.com/devzolo/nodejs-napi-project-template.git",
"author": "Raphael-ZoLo <zolotorevsky@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"scripts": {
"dev": "nodemon",
"start": "ts-node src",
"build": "tsc",
"test": "jest --coverage"
}
}