This repository was archived by the owner on Jan 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.37 KB
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
{
"name": "@tanker/quickstart-examples",
"version": "1.6.1",
"main": "server/server.js",
"description": "Example applications for Tanker.io",
"repository": {
"type": "git",
"url": "https://github.com/TankerHQ/quickstart-examples.git"
},
"author": "Tanker Team",
"license": "MIT",
"private": true,
"workspaces": [
"client/nodejs/hello-world",
"client/web/api-observer",
"client/web/notepad",
"server"
],
"engines": {
"node": ">= 10",
"yarn": ">= 1.0"
},
"scripts": {
"start": "yarn start:server",
"start:server": "cd server && yarn start",
"watch:server": "cd server && yarn watch",
"start:nodejs:hello-world": "cd client/nodejs/hello-world && yarn start",
"start:web:api-observer": "cd client/web/api-observer && yarn start",
"start:web:notepad": "cd client/web/notepad && yarn start"
},
"bin": {
"eslint": "./node_modules/.bin/eslint"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-chai-expect": "2.2.0",
"eslint-plugin-chai-friendly": "0.7.2",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-mocha-no-only": "1.1.1",
"eslint-plugin-react": "7.25.1"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"glob-parent": "^5.1.2",
"node-fetch": "^2.6.2"
}
}