-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.79 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
{
"name": "mercury",
"version": "0.0.4",
"description": "The supporting backend of the mercury project",
"main": "src/index.ts",
"directories": {
"doc": "docs",
"test": "src/test",
"build": "build"
},
"scripts": {
"build": "npm run build:ts",
"build:ts": "tsc",
"build:api": "node ./docs/API/buildAPI.js",
"watch:ts": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "npm run build && node ./build/index.js",
"start:debug": "node --inspect ./build/index.js",
"test:unit": "ts-mocha -p ./ --exit ./src/test/unit/index.test.ts",
"test:travis": "SET TRAVIS=true && ts-mocha -p ./ --exit ./build/src/unit/index.test.ts",
"pre-publish": "npm run lint && npm run build && npm run test:unit"
},
"author": "CodeDoesGood",
"license": "MIT",
"dependencies": {
"@slack/client": "^4.4.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-rate-limit": "^2.12.2",
"jsonwebtoken": "^8.2.1",
"knex": "^0.14.6",
"lodash": "^4.17.10",
"mysql": "^2.15.0",
"nodemailer": "^4.6.4",
"winston": "^2.4.2"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.4",
"@types/dotenv": "^4.0.3",
"@types/expect": "^1.20.3",
"@types/express": "^4.11.1",
"@types/express-rate-limit": "^2.9.3",
"@types/jsonwebtoken": "^7.2.7",
"@types/knex": "^0.14.20",
"@types/lodash": "^4.14.109",
"@types/mocha": "^5.2.0",
"@types/mysql": "^2.15.4",
"@types/node": "^10.5.8",
"@types/nodemailer": "^4.6.0",
"@types/winston": "^2.3.9",
"mocha": "^5.2.0",
"raml2html": "^7.1.0",
"ts-mocha": "^1.2.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.8.0",
"typescript": "^2.8.3"
}
}