forked from leerob/dsmtech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "dsmtech",
"description": "The best tech companies and startups in the Greater Des Moines area.",
"version": "1.0.0",
"author": {
"name": "Lee Robinson",
"email": "[email protected]",
"url": "https://dsmtech.io"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/leerob/dsmtech.git"
},
"engines": {
"node": "10.17.0",
"yarn": ">=1.10.0"
},
"scripts": {
"dev": "next",
"imageoptim": "imageoptim \"static/**/*.jpg\"",
"now-build": "next build && next export -o dist",
"prettier": "prettier --write \"**/*.{js,json,md,yml}\"",
"start": "next start"
},
"dependencies": {
"next": "9.1.7",
"react": "16.12.0",
"react-dom": "16.12.0",
"styled-components": "4.4.1"
},
"devDependencies": {
"babel-plugin-styled-components": "1.10.6",
"husky": "4.0.0",
"imageoptim-cli": "3.0.2",
"lint-staged": "9.5.0",
"prettier": "1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,yml}": [
"prettier --write",
"git add"
],
"*.jpg": [
"imageoptim",
"git add"
]
}
}