-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "nextify",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"pre-commit": "npm run lint --fix && pretty-quick --staged && npx prettier --write . && git add -A ."
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"axios": "^0.21.1",
"eslint-config-airbnb": "^18.2.1",
"firebase": "^9.0.0-beta.7",
"lodash": "^4.17.21",
"nanoid": "^3.1.23",
"next": "^11.0.1",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-markdown": "^7.0.0",
"react-redux": "^7.2.4",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1"
}
}