-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.04 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.04 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "node-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"eslint:lint": "eslint src/**/*.{ts,tsx}",
"eslint:format": "eslint --fix src/**/*.{ts,tsx}",
"prettier:test": "prettier -c ./.prettierrc src/**/*.{ts,tsx,js,json,css,less,sass,scss,less,html,pug,md}",
"prettier:format": "prettier -c ./.prettierrc --write src/**/*.{ts,js,json,css,sass,scss,less,html,pug,md}",
"prettier:format-e2e": "prettier -c ./.prettierrc --write e2e/**/*.testcafe.ts",
"test:e2e-live": "testcafe --live --disable-screenshots",
"test:e2e-debug": "testcafe chrome --disable-screenshots"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AbbeBlubb/node-ts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AbbeBlubb/node-ts/issues"
},
"homepage": "https://github.com/AbbeBlubb/node-ts#readme",
"devDependencies": {
"@prettier/plugin-pug": "^1.13.3",
"@types/express": "^4.17.11",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"testcafe": "^1.11.0",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pug": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{ts,js,json,css,sass,scss,less,html,pug,md}": [
"prettier -c ./.prettierrc --write"
]
}
}