-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.86 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
{
"name": "shy-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"bulma": "0.9.0",
"classnames": "^2.3.1",
"date-fns": "^2.16.1",
"firebase": "7.19.1",
"next": "^12.0.3",
"next-redux-wrapper": "^7.0.5",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-easy-crop": "^3.1.1",
"react-redux": "^7.2.6",
"react-select": "^4.3.0",
"redux": "^4.1.2",
"refract-xstream": "^4.2.3",
"sass": "^1.42.1",
"xstream": "^11.14.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"clean": "rm -rf ./build",
"deploy": "now deploy",
"lint:old": "eslint . --ext js,jsx",
"lint": "next lint",
"lint:fix": "next lint . --fix",
"lint:ci": "next lint . --fix --max-warnings 0",
"precommit": "lint-staged"
},
"husky": {
"hooks": {
"pre-push": "yarn run lint:ci"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@svgr/webpack": "^5.5.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-next": "12.0.3",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"typescript": "^4.4.4"
}
}