-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.43 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "starter-template",
"version": "0.0.0",
"description": "a toy framework",
"main": "dist/app.js",
"scripts": {
"lint": "eslint ./src/**/*.ts --fix",
"build": "tsc",
"server": "nodemon",
"start": "node ./dist/src/server.js",
"test": "./node_modules/mocha/bin/mocha --sort --require ts-node/register --timeout 1000 --exit ./test/*.ts",
"coverage": "nyc --reporter=lcov npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shatabdijs/starter-template"
},
"keywords": [],
"author": "YashKumarVerma <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shatabdijs/starter-template/issues"
},
"homepage": "https://github.com/shatabdijs/starter-template#readme",
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"lcov-parse": "^1.0.0",
"mocha": "^7.1.2",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"ts-node": "^8.10.1"
},
"dependencies": {
"ts": "^0.2.2",
"dotenv": "^8.2.0",
"jsdoc": "^3.6.4",
"typescript": "^3.8.3"
}
}