-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
80 lines (80 loc) · 1.99 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
{
"name": "futureflix",
"description": "Netflix like streaming platform — learnhapi.com",
"version": "2.1.1",
"author": "Future Studio <info@futurestud.io>",
"bugs": {
"url": "https://github.com/fs-opensource/futureflix-starter-kit/issues"
},
"contributors": [
{
"name": "Marcus Poehls",
"email": "marcus@futurestud.io"
},
{
"name": "Norman Peitek",
"email": "norman@futurestud.io"
},
{
"name": "Christian Fellner",
"email": "christian@futurestud.io"
}
],
"dependencies": {
"axios": "~0.20.0",
"boom": "~7.3.0",
"dotenv": "~6.2.0",
"handlebars": "~4.6.0",
"handlebars-helper-repeat": "~2.0.0",
"hapi": "~17.8.1",
"hoek": "~6.1.2",
"html-to-text": "~4.0.0",
"inert": "~5.1.2",
"joi": "~14.3.0",
"listr": "~0.14.3",
"lodash": "~4.17.11",
"mongoose": "~5.7.7",
"mongoose-simple-random": "~0.4.1",
"vision": "~5.4.4"
},
"devDependencies": {
"code": "~5.2.0",
"cross-env": "~5.2.0",
"eslint": "~5.10.0",
"eslint-config-standard": "~12.0.0",
"eslint-plugin-import": "~2.14.0",
"eslint-plugin-node": "~8.0.0",
"eslint-plugin-promise": "~4.0.1",
"eslint-plugin-standard": "~4.0.0",
"lab": "~18.0.1"
},
"engines": {
"node": ">= 8.9.0"
},
"homepage": "https://github.com/fs-opensource/futureflix-starter-kit",
"keywords": [
"futureflix",
"hapi",
"hapi.js",
"mongodb",
"mongoose",
"node",
"node.js",
"tutorial",
"tutorials",
"bulma"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/fs-opensource/futureflix-starter-kit.git"
},
"scripts": {
"cleanup": "node ./data/load-sample-data.js --destroy",
"setup": "npm run pumpitup",
"pumpitup": "node ./data/load-sample-data.js",
"test": "cross-env NODE_ENV=test lab --assert code --leaks --coverage --lint",
"lint": "./node_modules/eslint/bin/eslint.js . --fix --ext .js"
}
}