-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
85 lines (85 loc) · 2.43 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
83
84
85
{
"name": "shortlr2-backend",
"version": "0.1.0",
"description": "Shortlr v2 Backend",
"main": "dist/run.js",
"repository": "[email protected]:coding-blocks/shortlr2-backend.git",
"author": "Arnav Gupta <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"apidocs": "^2017.3.9",
"connect-ensure-login": "^0.1.1",
"connect-session-sequelize": "^6.0.0",
"convert-radix64": "^0.2.0",
"debug": "^4.1.1",
"express": "^4.16.4",
"express-flash": "^0.0.2",
"express-hbs": "^1.0.4",
"express-session": "^1.15.6",
"hbs": "^4.0.1",
"passport": "^0.4.0",
"passport-auth-token": "^1.0.1",
"passport-http-bearer": "^1.0.1",
"passport-oneauth": "^1.3.0",
"pg": "^7.6.1",
"pg-hstore": "^2.3.2",
"proxy-addr": "^2.0.4",
"raven": "^2.6.4",
"request-ip": "^2.1.3",
"sequelize": "^4.41.2",
"umzug": "^2.2.0"
},
"scripts": {
"clean": "rimraf .nyc_output dist coverage",
"build": "tsc",
"predev": "yarn lint:fix && yarn build",
"dev": "cross-env DEBUG=* NODE_ENV=development node dist/run.js",
"prestart": "yarn lint && yarn build && yarn test",
"start": "cross-env NODE_ENV=production node dist/run.js",
"lint": "tslint --project .",
"lint:fix": "tslint --fix --project .",
"watch": "nodemon --watch src -e js,ts --exec 'export NODE_PATH=dist && node dist/run.js'",
"test": "mocha",
"cover": "nyc mocha",
"docs": "apidoc -i src/routes/api/ -o docs/",
"migrate": "ts-node ./src/scripts/migrate.js"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/connect-ensure-login": "^0.1.4",
"@types/debug": "^0.0.31",
"@types/express": "^4.16.0",
"@types/express-flash": "^0.0.0",
"@types/express-session": "^1.15.11",
"@types/mocha": "^5.2.5",
"@types/passport": "^0.4.7",
"@types/passport-http-bearer": "^1.0.33",
"@types/raven": "^2.5.1",
"@types/sequelize": "^4.27.36",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.15.2",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.16.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.1.6"
},
"nyc": {
"extension": [
".ts",
".js"
],
"reporter": [
"text-summary",
"lcovonly",
"html"
],
"sourceMap": true
}
}