-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.26 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "jaen-template",
"version": "1.2.0",
"description": "A template repository for Jaen",
"homepage": "https://template.snek.at/",
"author": "Florian Kleber",
"license": "EUPL-1.2",
"main": "lib/index.js",
"files": [
"lib",
"LICENSES"
],
"keywords": [
"jaen"
],
"repository": {
"type": "git",
"url": "git+https://github.com/snek-at/jaen-template.git"
},
"bugs": {
"url": "https://github.com/snek-at/jaen-template/issues"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "gatsby build && cp CNAME public/ && gh-pages -d public",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"commit": "git-cz --disable-emoji"
},
"dependencies": {
"@chakra-ui/gatsby-plugin": "^2.0.1",
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.7",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@snek-at/jaen": "^2.0.0",
"@snek-at/jaen-pages": "^2.0.0",
"electron": "^14.0.0",
"framer-motion": "^4.1.17",
"gatsby": "^3.12.1",
"gatsby-plugin-gatsby-cloud": "^2.11.0",
"gatsby-plugin-image": "^1.13.0",
"gatsby-plugin-manifest": "^3.13.0",
"gatsby-plugin-offline": "^4.12.0",
"gatsby-plugin-react-helmet": "^4.12.0",
"gatsby-plugin-sharp": "^3.13.0",
"gatsby-source-filesystem": "^3.13.0",
"gatsby-transformer-sharp": "^3.13.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"sharp": "^0.29.1"
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"gatsby-plugin-compile-es6-packages": "^2.1.1",
"gatsby-plugin-emotion": "^6.13.0",
"gh-pages": "^3.2.3",
"prettier": "2.3.2",
"typescript": "^4.4.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}