-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
53
54
55
56
{
"name": "base",
"version": "1.0.0",
"description": "",
"main": "index.js",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"test": "jest --watch",
"prettier": "prettier",
"start": "parcel index.html",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix"
},
"keywords": [],
"author": "Nicole Chung",
"license": "MIT",
"dependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"parcel": "2.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "7.16.5",
"@babel/preset-typescript": "7.16.7",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "7.2.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.10.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "7.0.4",
"identity-obj-proxy": "3.0.0",
"lint-staged": "12.1.5",
"prettier": "2.5.1",
"typescript": "4.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js, ts, tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css,md}": "prettier --write"
}
}