-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "ts-bolierplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc && npm run lint",
"dev": "tsc && concurrently \"tsc -w\" \"nodemon dist/index.js\"",
"lint": "tsc --noEmit && eslint \"src/*.{js,ts}\" --quiet --fix",
"start": "node dist/index.js",
"test": "jest --forceExit --coverage --verbose --detectOpenHandles",
"test:watch": "jest --forceExit --coverage --verbose --watchAll --detectOpenHandles"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/express": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-jest": "^26.3.0",
"concurrently": "^5.3.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@types/express": "^4.17.7",
"@types/node": "^14.6.0",
"express": "^4.17.1",
"ts-node": "^9.0.0"
}
}