-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "KryhaAgoricHackathon",
"version": "0.0.1",
"private": true,
"useWorkspaces": true,
"main": "index.js",
"workspaces": [
"api",
"contract",
"_agstate/agoric-servers"
],
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-jessie": "^0.0.6",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"prettier": "^1.18.2"
},
"scripts": {
"OFF-clean": "yarn workspaces run clean",
"prettier": "yarn workspaces run prettier",
"lint-fix": "yarn workspaces run lint-fix",
"lint-check": "yarn workspaces run lint-check",
"test": "yarn workspaces run test",
"build": "yarn workspaces run build"
},
"dependencies": {
"@agoric/babel-parser": "^7.6.4",
"agoric": "^0.4.0",
"@agoric/notifier": "0.0.1",
"babel-eslint": ">=11.0.0-beta.2",
"eslint-plugin-eslint-comments": "^3.1.2"
}
}