-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.22 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
{
"name": "daovatar",
"scripts": {
"postinstall": "(cd app && npm install); (cd functions && npm install); (cd ipfs_node && npm install)",
"start": "concurrently \"npm:start:*\"",
"start:app": "cd app && npm start",
"start:firebase": "cd functions && npm start",
"start:arlocal": "npx arlocal",
"check": "npm run fmt:check && npm run lint",
"fmt": "prettier --config .prettierrc.json --write \"**/*.{ts,tsx,js}\"",
"fmt:check": "prettier --config .prettierrc.json --check \"**/*.{ts,tsx,js}\"",
"lint": "eslint --max-warnings 0 \"**/*.{ts,tsx,js}\"",
"prepare": "husky install"
},
"dependencies": {
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-eslint": "^10.1.0",
"concurrently": "^6.2.1",
"eslint": "^7.32.0",
"eslint-config-react-app": "^6.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2"
},
"devDependencies": {
"tsc-watch": "^4.5.0"
}
}