-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
67 lines (67 loc) · 1.71 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": "blog",
"version": "1.0.0",
"description": "Best blog ever with Next.js",
"main": "index.js",
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"css:build": "node-sass --omit-source-map-url assets/sass/styles.scss static/css/styles.css",
"css:watch": "npm run css:build -- --watch"
},
"keywords": [
"nextjs",
"reactjs",
"express",
"firestore",
"firebase/auth",
"firebase/firestore"
],
"author": "MoHo Khaleqi",
"license": "MIT",
"homepage": "https://github.com/mohokh67/next.js-best-blog-ever",
"repository": {
"type": "git",
"url": "https://github.com/mohokh67/next.js-best-blog-ever"
},
"bugs": {
"url": "https://github.com/mohokh67/next.js-best-blog-ever/issues"
},
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"bulma": "^0.7.3",
"dotenv-webpack": "^1.7.0",
"express": "^4.16.4",
"firebase": "^5.8.2",
"moment": "^2.24.0",
"next": "^7.0.2",
"node-sass": "^4.11.0",
"nprogress": "^0.2.0",
"re-base": "^4.0.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"slugify": "^1.3.4",
"validator": "^10.11.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.3",
"prettier": "^1.16.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --single-quote --write", "git add"]
}
}