-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) Β· 2.2 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": "hsu-mailer",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"prebuild": "npx copyfiles -u 1 \"src/views/**/*\" \"src/public/**/*\" \"src/templates/**/*\" dist/",
"start": "node dist/server.js",
"start:dev": "nodemon --exec ts-node --files src/server.ts",
"test": "mocha -r ts-node/register ./src/test/**/*.spec.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techbless/typescript-express-starter.git"
},
"author": "techbless <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/techbless/typescript-express-starter/issues"
},
"homepage": "https://github.com/techbless/typescript-express-starter#readme",
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/chai": "^4.2.12",
"@types/express": "^4.17.7",
"@types/express-session": "^1.17.0",
"@types/helmet": "0.0.47",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"@types/passport": "^1.0.4",
"@types/passport-local": "^1.0.33",
"@types/sequelize": "^4.28.9",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"chai": "^4.2.0",
"copyfiles": "^2.3.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.1.1",
"supertest": "^4.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/ejs": "^3.0.4",
"@types/jquery": "^3.5.1",
"@types/node-cron": "^2.0.3",
"@types/puppeteer": "^3.0.1",
"aws-sdk": "^2.735.0",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-safe-async": "^3.0.0",
"express-session": "^1.17.1",
"helmet": "^4.1.0",
"mysql2": "^2.1.0",
"node-cron": "^2.0.3",
"nodemon": "^2.0.4",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"puppeteer": "^5.2.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.3.4",
"sequelize-cli": "^6.2.0"
}
}