forked from Agoric/dapp-card-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "dapp-card-store",
"version": "0.0.1",
"private": true,
"useWorkspaces": true,
"engines": {
"node": ">=14.15.0"
},
"workspaces": [
"api",
"contract",
"_agstate/agoric-servers",
"ui"
],
"devDependencies": {
"@endo/eslint-plugin": "^0.4.1",
"@jessie.js/eslint-plugin": "^0.2.0",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-jessie": "^0.0.6",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"import-meta-resolve": "^1.1.1",
"prettier": "^2.2.1"
},
"scripts": {
"preinstall": "node -e \"process.env.AGORIC_INSTALL && process.exit(0); console.warn('please use: agoric install . For details, see https://agoric.com/documentation/'); process.exit(1)\"",
"lint": "yarn workspaces run lint-fix",
"lint-check": "yarn workspaces run lint-check",
"test": "yarn workspaces run test",
"build": "yarn workspaces run build"
},
"dependencies": {},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"overrides": [
{
"files": [
"*.js",
"*.cjs",
"*.mjs"
]
}
]
}
}