-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
64 lines (64 loc) · 1.78 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
{
"name": "node-typescript-starter",
"version": "1.0.0",
"description": "This is a very stripped down base project to get started with Node/Typescript",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint \"{src,test}/**/*.{js,ts}\"",
"lint-fix": "npm run lint -- --fix",
"migrations:gen": "ts-node ./node_modules/.bin/typeorm migration:generate",
"migrations:run": "ts-node ./node_modules/.bin/typeorm migration:run",
"start": "ts-node src/index.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmw5598/node-typescript-starter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jmw5598/node-typescript-starter/issues"
},
"homepage": "https://github.com/jmw5598/node-typescript-starter#readme",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.6",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.2.3",
"lint-staged": "^10.1.0",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"reflect-metadata": "^0.1.13",
"sqlite3": "^4.1.1",
"typeorm": "^0.2.24"
},
"lint-staged": {
"*.ts": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
}
}