-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.56 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
85
86
87
88
{
"name": "nightmare",
"version": "1.0.0",
"description": "nightmare",
"keywords": [
"Gatsby",
"web"
],
"scripts": {
"lint": "eslint --fix src/**/*.js && prettier --write src/**/*.{js,json,md}",
"develop": "gatsby develop",
"build:dir": "mkdir -p public/icons/",
"build:favicons": "node scripts/favicons",
"build:gatsby": "gatsby build",
"build": "npm run build:dir && npm run build:favicons && npm run build:gatsby",
"prebuild": "rimraf tailwind.custom.css && postcss tailwind.css -o tailwind.custom.css",
"predevelop": "rimraf tailwind.custom.css && postcss tailwind.css -o tailwind.custom.css",
"serve": "gatsby serve",
"clean": "rimraf .cache public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@emotion/core": "^10.0.5",
"@emotion/styled": "^10.0.5",
"babel-plugin-tailwind": "^0.1.10",
"crocks": "^0.11.1",
"dotenv": "^6.2.0",
"emotion": "^10.0.5",
"emotion-server": "^10.0.5",
"favicons": "^5.3.0",
"gatsby": "^2.0.67",
"gatsby-plugin-emotion": "^3.0.1",
"gatsby-plugin-google-analytics": "^2.0.6",
"gatsby-plugin-manifest": "^2.0.12",
"gatsby-plugin-netlify": "^2.0.6",
"gatsby-plugin-netlify-cache": "^1.0.0",
"gatsby-plugin-offline": "^2.0.19",
"gatsby-plugin-react-helmet": "^3.0.4",
"gatsby-plugin-robots-txt": "^1.3.0",
"gatsby-plugin-sitemap": "^2.0.3",
"gatsby-plugin-webpack-size": "0.0.3",
"gatsby-source-prismic": "^2.3.0-alpha.3",
"gatsby-source-published-google-sheets": "^1.0.2",
"prop-types": "^15.6.2",
"react": "^16.8.2",
"react-confetti": "^2.7.0",
"react-dom": "^16.8.2",
"react-helmet": "^5.2.0",
"react-pose": "^4.0.4",
"react-use": "^5.10.0",
"react-youtube": "^7.9.0",
"tailwindcss": "^0.7.3",
"uuid": "^3.3.2",
"video-react": "^0.13.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.1",
"lint-staged": "^7.3.0",
"postcss": "^7.0.5",
"postcss-cli": "^6.0.0",
"prettier": "^1.15.3",
"rimraf": "^2.6.2"
},
"author": "Alexei Accio <alexei.accio@gmail.com>",
"license": "MIT"
}