-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.67 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "availchet-site",
"version": "0.1.0",
"private": true,
"homepage": "https://availchet.github.io",
"repository": {
"type": "git",
"url": "git+https://github.com/availchet/availchet.github.io.git"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"clsx": "^1.1.0",
"lint-staged": "^11.2.5",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"react-scripts": "^5.0.1",
"react-vertical-timeline-component": "^3.5.2",
"sass": "^1.43.3",
"serve": "^14.0.1",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/runtime": "^7.9.2",
"babel-jest": "^25.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-react-css-modules": "^0.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.0",
"typescript": "^4.8.3"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -b master -d build",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"stylelint": "stylelint **/*.scss",
"stylelint:fix": "stylelint **/*.scss --fix",
"coveralls": "npm test -- --coverage --watchAll=false && cat ./coverage/lcov.info | coveralls",
"lint": "eslint 'src/**/*.{js,jsx}' --ignore-pattern '/old/' --fix",
"format": "prettier --write 'src/**/*.{js,jsx,css,scss}'",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"https": "HTTPS=true npm start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"browserslist": [
"last 1 version",
">1%"
]
}