-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.09 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.09 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
{
"name": "snappy-recovery",
"private": true,
"version": "0.0.1",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"babel-eslint": "10.1.0",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-loader": "4.0.2",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsdoc": "^29.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^20.1.0",
"typescript": "^4.4.2"
},
"scripts": {
"build": "(cd packages/shared && yarn tsc -b) && (yarn --cwd packages/webapp build)"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}