-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.01 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
{
"name": "hrabo-portfolio",
"license": "MIT",
"scripts": {
"start": "next",
"build-icons": "node scripts/favicons",
"build": "yarn build-icons && next build ",
"export": "next export",
"commit": "npx git-cz",
"stest": "next build && next export && http-server ./out"
},
"dependencies": {
"next": "^8.0.1",
"next-offline": "^3.3.6",
"next-page-transitions": "^1.0.0-alpha.6",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@semantic-release/github": "^5.2.10",
"cz-conventional-changelog": "^2.1.0",
"favicons": "^5.3.0",
"prettier": "^1.16.4",
"semantic-release": "^15.13.3",
"semantic-release-gitlab": "^7.1.3"
},
"prettier": {
"semi": false,
"useTabs": true,
"singleQuote": true,
"tabWidth": 4
},
"babel": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true
}
]
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}