-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.42 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": "recoded-capstone-project",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/user-event": "^7.1.2",
"autoprefixer": "^9.8.6",
"firebase": "^8.0.1",
"i18next": "^19.8.3",
"i18next-browser-languagedetector": "^6.0.1",
"material-ui-icons": "^1.0.0-beta.36",
"model": "^6.0.1",
"node-sass": "4.14.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-elastic-carousel": "^0.9.1",
"react-i18next": "^11.7.3",
"react-modal": "^3.11.2",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-scroll-up-button": "^1.6.4",
"react-spring": "^8.0.27",
"styled-components": "^5.2.0",
"tailwindcss": "^1.9.5"
},
"scripts": {
"start": "concurrently \"yarn watch:css\" \"react-scripts start\"",
"build": "concurrently \"yarn build:css\" \"react-scripts build\"",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:css": "postcss src/styles/tailwind.css -o src/styles/main.css",
"watch:css": "postcss src/styles/tailwind.css -o src/styles/main.css -w",
"format": "prettier --write \"**/*.+(js|jsx|json)\" && eslint --fix",
"jest:watch": "jest --watch"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/react": "^9.5.0",
"babel-eslint": "^10.1.0",
"concurrently": "^5.3.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"jest-dom": "^4.0.0",
"lint-staged": "^10.4.2",
"postcss": "^8.1.2",
"postcss-cli": "^8.1.0",
"prettier": "^2.1.2",
"react-test-renderer": "^17.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.{js,jsx,css}": [
"prettier --write",
"eslint --fix"
]
}
}