-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.04 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.04 KB
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
{
"name": "typescript-express-rest-api",
"version": "2.0.10",
"main": "./build/index.js",
"keywords": [
"typescript",
"node",
"nodejs",
"rest",
"restfull",
"api"
],
"description": "API to browse and create software stacks for learning",
"author": "Ana Tomboulian <ana@solvestack.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SolveStack/stacks-api/issues"
},
"homepage": "https://github.com/SolveStack/stacks-api#readme",
"scripts": {
"build": "tsc --skipLibCheck",
"start": "tsc --skipLibCheck && node ./build/config/server/index.js",
"ts:watch": "tsc -w",
"test": "NODE_ENV=test mocha -r ts-node/register test/index.js --exit"
},
"files": [
"src"
],
"dependencies": {
"bcrypt": "4.0.1",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"helmet": "3.22.0",
"joi": "14.3.1",
"mongoose": "5.9.16",
"ts-node": "8.10.1",
"util": "0.12.3",
"jsonwebtoken": "8.5.1"
},
"devDependencies": {
"@types/bcrypt": "3.0.0",
"@types/body-parser": "1.16.8",
"@types/compression": "0.0.36",
"@types/cookie-parser": "1.4.1",
"@types/cors": "2.8.3",
"@types/debug": "0.0.31",
"@types/dotenv": "6.1.0",
"@types/ejs": "2.6.1",
"@types/express": "4.11.0",
"@types/helmet": "0.0.42",
"@types/joi": "14.0.1",
"@types/mongoose": "5.3.5",
"@types/node": "10.12.18",
"@types/swagger-jsdoc": "0.0.2",
"@types/swagger-ui-express": "3.0.0",
"@types/yeoman-generator": "3.1.0",
"@types/chai": "4.1.7",
"@types/supertest": "2.0.7",
"chai": "4.2.0",
"supertest": "4.0.2",
"jsdoc": "3.5.5",
"mocha": "6.2.0",
"nodemon": "1.18.10",
"source-map-loader": "0.2.4",
"swagger-jsdoc": "3.2.7",
"swagger-ui-express": "4.0.2",
"tslint": "5.8.0",
"tslint-config-airbnb": "5.8.0",
"tslint-eslint-rules": "5.4.0",
"typescript": "3.4.3",
"@types/jsonwebtoken": "8.3.2"
}
}