-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
{
"name": "bond",
"description": "Quality Ensurance Agent for pull requests.",
"keywords": [],
"author": "HowToHireMe",
"license": "MIT",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ensurance/bond.git"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/compression": "1.7.0",
"@types/dotenv": "^6.1.0",
"@types/errorhandler": "1.5.0",
"@types/es6-shim": "^0.31.37",
"@types/express": "^4.16.0",
"@types/express-flash": "0.0.2",
"@types/express-session": "^1.15.10",
"@types/lusca": "^1.5.0",
"@types/winston": "^2.3.9",
"foreman": "^3.0.1",
"nodemon": "^2.0.5",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"dotenv": "^8.0.0",
"errorhandler": "^1.5.0",
"express": "^4.16.3",
"express-flash": "0.0.2",
"express-session": "^1.15.6",
"lusca": "^1.6.0",
"pug": "^3.0.0",
"winston": "^3.1.0"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node ./build/server.js",
"development": "foreman start",
"production": "foreman start -f Procfile.production",
"test": "",
"lint": "tslint -c ./.quality/.tslint.yml -p tsconfig.json 'src/**/*.ts', 'test/**/*.ts'",
"release": "npm run build && npm run lint && npm run test"
},
"bugs": {
"url": "https://github.com/ensurance/bond/issues"
},
"homepage": "https://github.com/ensurance/bond#readme"
}