-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
95 lines (95 loc) · 2.95 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
86
87
88
89
90
91
92
93
94
95
{
"name": "typescript-api",
"version": "1.0.0",
"description": "\"TypeScript API - Node + ES6 + Sequelize + PostgreSQL\"",
"main": "server.ts",
"scripts": {
"integration-test": "NODE_ENV=test mocha --opts server/config/tests/config/mocha.opts server/**/integration.test.ts",
"unit-test": "NODE_ENV=test mocha --opts server/config/tests/config/mocha.opts server/**/unit.test.ts",
"dist-test": "NODE_ENV=test mocha --require build/config/tests/config/helpers.js --reporter spec --compilers js:babel-core/register build/**/**/integration.*.js",
"start-builded-app": "NODE_ENV=test node ./build/server.js",
"start": "./node_modules/.bin/ts-node ./server/server.ts",
"watch": "NODE_ENV=development ./node_modules/.bin/nodemon -w . --ext .ts --exec npm run start",
"test:coverage": "nyc npm run test",
"run-builded": "NODE_ENV=development nodemon ./build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/raphaellima8/typescript-api.git"
},
"engines": {
"node": "5.12.0",
"npm": "3.10.9"
},
"keywords": [
"TypeScript",
"API",
"REST",
"Node",
"Sequelize",
"PostgreSQL",
"Docker"
],
"author": "Raphael Lima <raphael.aolima8@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^1.0.0",
"@types/bluebird": "^3.0.37",
"@types/chai": "^3.4.34",
"@types/debug": "0.0.29",
"@types/express": "^4.0.34",
"@types/http-status": "^0.2.29",
"@types/jsonwebtoken": "^7.2.0",
"@types/jwt-simple": "^0.5.32",
"@types/lodash": "^4.14.43",
"@types/mocha": "^2.2.38",
"@types/morgan": "^1.7.32",
"@types/node": "^6.0.52",
"@types/passport": "^0.3.2",
"@types/passport-jwt": "^2.0.19",
"@types/sequelize": "^4.0.39",
"@types/supertest": "^2.0.0",
"babel-plugin-istanbul": "^4.1.1",
"chai": "^3.5.0",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-standard": "^2.0.1",
"eslint-plugin-typescript": "^0.1.0",
"gulp": "^3.9.1",
"gulp-typescript": "^3.1.1",
"http-server": "^0.9.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mysql": "^2.12.0",
"nodemon": "^1.11.0",
"nyc": "^10.1.2",
"supertest": "^3.0.0",
"testdouble": "^1.11.2",
"ts-node": "^1.7.2",
"typescript": "^2.0.6"
},
"dependencies": {
"@types/es6-promise": "0.0.32",
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.15.2",
"debug": "^2.6.0",
"express": "^4.14.0",
"http": "0.0.0",
"http-status": "^1.0.1",
"human-readable-ids": "^1.0.1",
"jsonwebtoken": "^7.2.1",
"jwt-simple": "^0.5.1",
"lodash": "^4.17.2",
"morgan": "^1.7.0",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"pg": "^6.1.2",
"sequelize": "^3.27.0",
"ts-node": "^1.7.3"
}
}