forked from kkrishnakv/express-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (71 loc) · 2.16 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
{
"name": "ejs-api",
"version": "3.0.0",
"description": "Express API",
"author": "krishna",
"main": "build/main.js",
"scripts": {
"build": "webpack --env APP_ENV=local --mode=development --progress",
"build:dev": "webpack --env APP_ENV=development --mode=development --progress",
"build:prod": "webpack --env APP_ENV=production --mode=production --progress",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier:fix": "prettier --parser typescript --write \"src/**/*.ts\"",
"start:prod": "cross-env APP_ENV=production nodemon -V --exec ts-node src/main.ts",
"start": "cross-env APP_ENV=local nodemon -V --exec ts-node src/main.ts",
"start-dev": "cross-env APP_ENV=development nodemon -V --exec ts-node src/main.ts"
},
"keywords": [
"typescript",
"mocha",
"sourcemaps",
"node",
"npm scripts",
"tsc"
],
"dependencies": {
"aws-sdk": "^2.809.0",
"body-parser": "1.18.3",
"clean-webpack-plugin": "^4.0.0",
"compression": "1.7.2",
"cors": "2.8.4",
"cross-env": "^7.0.2",
"express": "4.16.3",
"fs": "0.0.1-security",
"multer": "^1.4.2",
"multer-ts": "0.0.2",
"nconf": "^0.10.0",
"path": "0.12.7",
"pg": "^8.3.3",
"rimraf": "2.6.2",
"sequelize": "^6.3.5",
"winston": "3.3.3",
"winston-daily-rotate-file": "4.5.0"
},
"devDependencies": {
"@types/body-parser": "1.17.0",
"@types/compression": "0.0.36",
"@types/cors": "2.8.4",
"@types/express": "4.11.1",
"@types/multer": "^1.4.5",
"@types/nconf": "^0.10.0",
"@types/node": "10.3.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^7.3.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-unicorn": "^20.1.0",
"nodemon": "^2.0.4",
"prettier": "2.0.5",
"ts-loader": "^9.2.6",
"ts-node": "6.1.0",
"typescript": "^3.9.5",
"webpack": "5.58.1",
"webpack-cli": "^4.9.0",
"webpack-node-externals": "^3.0.0"
}
}