-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 954 Bytes
/
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
{
"name": "root",
"private": true,
"description": "TV Kitchen implementation examples",
"repository": "[email protected]:tvkitchen/examples.git",
"author": "Bad Idea Factory <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"kafka": "yarn kafka:start",
"kafka:start": "./services/kafka/start.sh",
"kafka:stop": "./services/kafka/stop.sh",
"lint": "eslint .",
"start": "yarn babel-node scripts/start.js"
},
"files": [
"src/"
],
"workspaces": [
"recipes/*"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.4.0"
},
"engines": {
"node": ">=13.10"
}
}