-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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": "@esfiddle/api",
"version": "1.0.0",
"description": "The ESFiddle API",
"main": "./dist/server.js",
"private": true,
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/helmet": "^0.0.42",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"debug": "^4.1.0",
"dotenv": "^6.1.0",
"express": "4.17.1",
"helmet": "^3.15.0",
"iconv-lite": "0.5.0",
"jsonwebtoken": "8.4.0",
"mongoose": "5.5.13",
"morgan": "1.9.1",
"nodemon": "1.19.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"path": "^0.12.7",
"rxjs": "6.3.3",
"swagger-ui-express": "^4.0.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/debug": "4.1.0",
"@types/dotenv": "^6.1.0",
"@types/express": "4.17.0",
"@types/mocha": "^5.2.7",
"@types/mongodb": "^3.1.14",
"@types/mongoose": "5.5.7",
"@types/morgan": "^1.7.32",
"@types/node": "12.0.5",
"@types/passport": "1.0.0",
"@types/passport-jwt": "^3.0.1",
"@types/supertest": "^2.0.6",
"@types/swagger-ui-express": "^3.0.0",
"@types/typescript": "^2.0.0",
"babel-cli": "^6.26.0",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"supertest": "3.4.0",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"scripts": {
"start": "nodemon dist/server.js",
"lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"pretest": "npm run build",
"postinstall": "npm run build",
"test": "npm run lint && mocha \"dist/**/test/**/*.js\"",
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"watch:dev": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/esfiddle/api.git"
},
"keywords": [],
"author": "esfiddle <[email protected]>",
"license": "MIT",
"homepage": "https://esfiddle.net",
"engines": {
"node": ">= 8.x"
}
}