generated from jsynowiec/node-typescript-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.17 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
{
"name": "stride-ts",
"version": "0.0.0",
"description": "Boilerplate/framework for developing APIs quickly and effectively in typescript.",
"engines": {
"node": ">= 14.16 <15"
},
"devDependencies": {
"@types/jest": "~26.0.23",
"@types/node": "~14.14.45",
"@typescript-eslint/eslint-plugin": "~4.28.2",
"@typescript-eslint/parser": "~4.28.2",
"eslint": "~7.30.0",
"eslint-config-prettier": "~8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "~24.3.6",
"jest": "~27.0.6",
"mogront": "^1.3.2",
"nodemon": "^2.0.12",
"prettier": "~2.3.2",
"rimraf": "~3.0.2",
"ts-jest": "~27.0.3",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"tscpaths": "^0.0.9",
"tslib": "^2.3.1",
"tsutils": "~3.21.0",
"typescript": "~4.3.5",
"typescript-transform-paths": "^3.3.1"
},
"scripts": {
"start": "node build/server.js",
"start:dev": "nodemon -r tsconfig-paths/register src/server.ts",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.release.json && tscpaths -p tsconfig.release.json -s src",
"build:watch": "tsc -w -p tsconfig.release.json && tscpaths -p tsconfig.release.json -s src",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch",
"mogront": "ts-node ./node_modules/mogront/build/bin/cli.js --config=\"src/config/database.js\" --template=\"es6\""
},
"author": "Kieron Wiltshire <[email protected]>",
"license": "UNLICENSED",
"dependencies": {
"@types/i18n": "^0.13.1",
"@types/nodemailer": "^6.4.4",
"body-parser": "^1.19.0",
"bootit": "^1.3.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"dotenv-parse-variables": "^2.0.0",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"greenlock": "^4.0.4",
"helmet": "^4.6.0",
"i18n": "^0.13.3",
"method-override": "^3.0.0",
"mongodb": "^3.6.11",
"morgan": "^1.10.0",
"nodemailer": "^6.6.3",
"respondent": "^1.1.2",
"socket.io": "^4.1.3"
},
"volta": {
"node": "14.16.1"
}
}