-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 986 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
{
"name": "zuzjes",
"version": "0.0.0",
"description": "Personal website of Zuzana Jeschke",
"repository": "git@github.com:zuzjes/zuzjes.com.git",
"author": "Zuzana Jeschke <zuz@zuzjes.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next",
"clean": "git clean -X -f -d",
"build": "next build",
"static": "yarn run build && next export",
"prettier-check": "prettier -l \"**/*.js\"",
"prettier-write": "prettier --write \"**/*.js\"",
"now-build": "yarn run static"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"babel-plugin-styled-components": "^1.10.7",
"bootstrap": "^4.3.1",
"next": "^9.0.3",
"next-images": "^1.2.0",
"next-yaml": "^1.0.1",
"react": "^16.9.0",
"react-bootstrap": "^1.3.0",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^16.9.0",
"styled-components": "^5.1.0"
},
"devDependencies": {
"prettier": "^1.18.2"
}
}