-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "express-ts-starter",
"version": "1.1.16",
"description": "A minimal express server starter with TypeScript",
"main": "server.js",
"scripts": {
"start": "node ./build/server.js",
"start:dev": "nodemon",
"build": "rm -rf ./build && tsc",
"clean": "rm -rf ./build && rm -rf ./node_modules && rm -rf ./coverage && yarn cache clean && yarn",
"clean:dev": "yarn clean && yarn start:dev",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage && open coverage/lcov-report/index.html",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"lint-staged": "lint-staged",
"semantic-release": "semantic-release",
"preinstall": "node scripts/preinstall-script.js",
"postinstall": "node scripts/postinstall-script.js",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"repository": {
"type": "git",
"url": "https://github.com/thousight/Express-TS-Starter.git"
},
"keywords": [
"typescript",
"nodejs",
"node"
],
"author": "thousight",
"license": "MIT",
"bugs": {
"url": "https://github.com/thousight/Express-TS-Starter/issues"
},
"homepage": "https://github.com/thousight/Express-TS-Starter#readme",
"dependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/winston": "^2.4.4",
"body-parser": "^1.19.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.3",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"snyk": "^1.1064.0",
"winston": "^3.6.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"conventional-changelog-express": "^2.0.5",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"semantic-release": "^17.1.1",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"snyk": true
}