-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
39 lines (39 loc) · 996 Bytes
/
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
{
"name": "bye-bye-server",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"prettier": "prettier --write .",
"validate": "node validations/alphabeticalOrdering.js && prettier --check ."
},
"dependencies": {
"animate.css": "^4.1.0",
"gray-matter": "^4.0.2",
"imagemin-optipng": "^8.0.0",
"jimp": "^0.16.0",
"next": "9.5.2",
"next-compose-plugins": "^2.2.0",
"next-optimized-images": "^2.6.2",
"raw-loader": "^4.0.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-markdown": "^4.3.1",
"rebass": "^4.0.7",
"responsive-loader": "^2.0.1"
},
"devDependencies": {
"frontmatter-markdown-loader": "^3.6.0",
"husky": "^4.3.7",
"lodash.isequal": "^4.5.0",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "node utils/orderAltAlphabetically.js && npm run prettier"
}
}
}