-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 2.77 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "joyup-project",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"firebase": "^9.6.11",
"immer": "^9.0.12",
"moment": "^2.29.3",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-big-calendar": "^0.40.1",
"react-datepicker": "^4.7.0",
"react-dom": "17.0.2",
"react-feather": "^2.0.9",
"react-firebase-hooks": "^5.0.3",
"react-helmet": "^6.1.0",
"react-joyride": "^2.4.0",
"react-redux": "^7.2.3",
"react-router-dom": "6",
"react-scripts": "5.0.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.1",
"sass": "^1.51.0",
"uuid": "^8.3.2",
"victory": "^36.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "yarn build:css && REACT_APP_GENERATE_SOURCEMAP=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --fix './src/**/*.{js,jsx}'",
"format": "prettier --write \"**/*.+(js|jsx|json|css|md)\"",
"watch:css": "TAILWIND_MODE=watch postcss src/assets/styles/tailwind.pcss -o src/assets/styles/main.css --watch",
"build:css": "postcss src/assets/styles/tailwind.pcss -o src/assets/styles/main.css --minify"
},
"eslintConfig": {
"extends": [
"plugin:react/recommended",
"plugin:prettier/recommended",
"plugin:react/jsx-runtime"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react",
"prettier"
],
"rules": {
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.1.0",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.23"
},
"prettier": {
"printWidth": 90,
"bracketSpacing": true,
"trailingComma": "es5",
"singleQuote": false,
"arrowParens": "always",
"semi": false,
"tabWidth": 2
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix",
"git add"
],
"*.+(json|css|md)": [
"prettier --write",
"git add"
]
}
}