-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.55 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
80
81
82
{
"name": "sparky-api",
"version": "0.0.1",
"description": "A starting point for Node.js express apps with TypeScript, forked from Microsoft with heavy alpha-like behaviour currently",
"repository": {
"type": "git",
"url": "https://github.com/NikolaPeevski/sparky-api"
},
"author": "Nikola Peevski",
"license": "MIT",
"scripts": {
"build": "npm run build-ts && npm run lint",
"build-ts": "tsc",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"debug": "npm run build && npm run watch-debug",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"serve": "node dist/src/server.js",
"start": "ts-node-dev --respawn src/server.ts",
"test": ""
},
"dependencies": {
"async": "^3.2.0",
"bcrypt": "^5.0.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"class-transformer": "^0.3.2",
"class-validator": "^0.12.2",
"class-validator-jsonschema": "^2.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.9.0",
"helmet": "^4.4.0",
"lusca": "^1.6.1",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"nodemailer": "^6.4.10",
"pg": "^8.3.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0-alpha.6",
"routing-controllers-openapi": "~2.0.1",
"swagger-ui-express": "^4.1.4",
"typeorm": "^0.2.30"
},
"devDependencies": {
"@types/async": "^3.2.2",
"@types/bluebird": "^3.5.32",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.12",
"@types/compression": "^1.7.0",
"@types/concurrently": "^5.2.0",
"@types/errorhandler": "^1.5.0",
"@types/eslint": "^7.2.0",
"@types/express": "^4.17.11",
"@types/express-serve-static-core": "^4.17.9",
"@types/express-session": "^1.17.0",
"@types/mocha": "^8.0.0",
"@types/multer": "^1.4.3",
"@types/node": "^14.0.26",
"@types/nodemailer": "^6.4.0",
"@types/request": "^2.48.5",
"@types/request-promise": "^4.1.46",
"@types/supertest": "^2.0.10",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"chai": "^4.2.0",
"concurrently": "^5.2.0",
"eslint": "^7.18.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"supertest": "^4.0.2",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.0"
}
}