-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.74 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
{
"name": "bog-npp",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"dev": "next",
"hardcode": "hardcode server/email/dev/** -p server/email/dev/ -o server/email/import/",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.17",
"@redux-devtools/extension": "^3.2.2",
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.3.1",
"clsx": "^1.1.1",
"email-templates": "^6.1.1",
"font-awesome": "^4.7.0",
"formik": "^2.2.9",
"hardcode": "^1.4.0",
"iron-session": "^6.0.5",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongodb": "^4.4.1",
"mongoose": "^6.2.5",
"next": "^12.1.0",
"next-images": "^1.8.4",
"next-redux-wrapper": "^7.0.5",
"prop-types": "^15.8.1",
"pug": "^3.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-transition-group": "^4.4.2",
"reactstrap": "^8.10.1",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"swr": "^1.2.2",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix"
],
"*.{js,jsx,css}": [
"prettier --write"
]
}
}