-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.2 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
{
"name": "recipe-hub",
"version": "1.0.0",
"description": "recipe hub",
"main": "index.js",
"engines": {
"node": "11.15.0"
},
"scripts": {
"install-frontend": "cd frontend && npm install",
"build-frontend": "cd frontend && npm run build",
"postinstall": "npm run install-frontend && npm run build-frontend",
"scrape": "cd scraper && ts-node index.ts",
"test-unit": "jest",
"test": "jest && cypress run",
"start": "ts-node server.ts",
"setup": "ts-node api/setup.ts",
"lint-fix": "tslint --fix --project tslint.json",
"load-fixtures": "node test/fixtures/load-fixtures.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tamarasaurus/recipe-hub.git"
},
"author": "Tamara Robichet, Francois Robichet",
"license": "MIT",
"bugs": {
"url": "https://github.com/tamarasaurus/recipe-hub/issues"
},
"homepage": "https://github.com/tamarasaurus/recipe-hub#readme",
"dependencies": {
"@types/bull": "^3.5.13",
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.12",
"@types/helmet": "0.0.43",
"@types/jsonpath": "^0.2.0",
"@types/ms": "^0.7.30",
"@types/node": "^12.0.0",
"@types/passport": "^1.0.0",
"@types/passport-google-oauth": "^1.0.41",
"@types/pg": "^7.4.14",
"@types/redis": "^2.8.13",
"@types/request-promise": "^4.1.43",
"@types/jest": "^24.0.17",
"body-parser": "^1.19.0",
"bull": "^3.9.1",
"connect-redis": "^3.4.1",
"contract-scraper": "^1.0.5",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-session": "^1.16.1",
"helmet": "^3.18.0",
"jest": "24.7.1",
"jsonpath": "^1.0.1",
"normalize-diacritics": "^2.6.1",
"numeric-quantity": "^0.3.2",
"passport": "^0.4.0",
"passport-google-oauth": "^2.0.0",
"pg": "^7.11.0",
"rate-limiter-flexible": "^1.0.2",
"redis": "^2.8.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"string-similarity": "^3.0.0",
"ts-node": "^8.1.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"devDependencies": {
"cypress": "^3.4.1",
"husky": "^3.0.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1"
}
}