-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.13 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
{
"name": "viking-garage-api",
"version": "0.5.5",
"description": "VIKING GARAGE API",
"scripts": {
"init": "scripts/initialize.sh",
"build": "tsc",
"dev": "nodemon --watch src --exec 'ts-node' src/server.ts",
"test": "npm run lint && NODE_ENV=test npm run create:db && NODE_ENV=test mocha -r ts-node/register ./src/tests/**/*.spec.ts",
"tdd": "mocha --watch --watch-extensions ts,tsx -r ts-node/register ./src/tests/**/*.spec.ts",
"lint": "tslint ./src/*.ts ./src/**/*.ts ./src/**/**/*.ts --exclude ./src/express.ts",
"postinstall": "npm run build",
"start": "node ./dist/server.js",
"create:db": "ts-node ./src/sequelize/mockups/index.ts"
},
"engines": {
"node": "8.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michalmikolajczyk/viking-garage-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/michalmikolajczyk/viking-garage-api/issues"
},
"homepage": "https://github.com/michalmikolajczyk/viking-garage-api#readme",
"dependencies": {
"@types/body-parser": "0.0.34",
"@types/chai": "^3.4.35",
"@types/chai-http": "0.0.30",
"@types/express": "^4.0.35",
"@types/jsonwebtoken": "^7.2.0",
"@types/mocha": "^2.2.39",
"@types/nodemailer": "^1.3.32",
"@types/passport": "^0.3.3",
"@types/passport-jwt": "^2.0.19",
"bcrypt": "^1.0.3",
"body-parser": "^1.16.1",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"cookie-parser": "^1.4.3",
"debug": "^2.6.1",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"jsonwebtoken": "^8.1.0",
"method-override": "^2.3.7",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"node-fetch": "^1.7.3",
"nodemailer": "^3.1.3",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"pg": "^6.1.2",
"sequelize": "^4.2.0",
"sequelize-cli": "^3.0.0-3",
"stripe": "^5.3.0",
"swagger-ui": "^2.2.10",
"ts-node": "^3.1.0",
"tslint": "^4.4.2",
"tslint-config-airbnb": "^1.0.0",
"tsoa": "^1.1.8",
"typescript": "2.3.4",
"uuid": "^3.0.1",
"walk-sync": "^0.3.1"
}
}