forked from wilsonrc/JobsScraper-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.1 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
{
"name": "jobs-scrapper",
"version": "0.0.1",
"description": "Backend which serves as an API which will scrap for Job Offers",
"main": "server.ts",
"scripts": {
"test": "mocha -r ts-node/register ./tests/**/*.ts --exit",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "nodemon -L -e ts,js,json --exec 'ts-node' ./server.ts",
"babel-node": "babel-node --presets @babel/preset-env",
"build:watch": "npm-watch build",
"sequelize": "sequelize",
"migrate": "sequelize db:migrate --",
"unmigrate": "sequelize db:migrate:undo",
"generate-migration": "sequelize migration:generate --name",
"eslint": "eslint --quiet .",
"tslint": "tslint --project .",
"lint": "yarn run eslint && yarn run tslint"
},
"watch": {
"build": "{config,core,db,routes,scripts,tests,utils}/*.js"
},
"repository": {
"type": "git",
"url": "githttps://github.com/wilsonrc/JobsScraper-Backend.git"
},
"keywords": [
"scrapper",
"jobs",
"jobs-offer",
"job-offer",
"node-js",
"javascript"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/wilsonrc/JobsScraper-Backend/issues"
},
"homepage": "https://github.com/wilsonrc/JobsScraper-Backend#readme",
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.4",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.4",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.2.1",
"sequelize-cli-typescript": "^3.2.0-c",
"sequelize-typescript": "^0.6.8",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.3.4000",
"typescript-tslint-plugin": "^0.3.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.2.2",
"@babel/register": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@types/babel__core": "^7.1.0",
"@types/body-parser": "^1.17.0",
"@types/cookie-parser": "^1.4.1",
"@types/eslint": "^4.16.6",
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.6",
"@types/pg": "^7.4.14",
"@types/rimraf": "^2.0.2",
"@types/sequelize": "^4.27.44",
"mocha": "^5.2.0",
"nodemon": "^1.18.10",
"npm-watch": "^0.4.0",
"rimraf": "^2.6.2"
}
}