-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
{
"name": "@seamlogic/buildnext.dev",
"description": "BuildNext.dev public website",
"version": "0.0.3",
"author": "Seamlogic",
"dependencies": {
"ftp-deploy": "^2.4.0",
"gatsby": "^2.29.0",
"gatsby-plugin-manifest": "^2.2.29",
"gatsby-plugin-postcss": "^3.0.0",
"gatsby-plugin-purgecss": "^4.0.1",
"gatsby-plugin-react-helmet": "^3.7.0",
"graphql": "^14.4.1",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1"
},
"keywords": [
"gatsby",
"tailwind",
"tailwindcss",
"purgecss"
],
"license": "MIT",
"scripts": {
"analyze:lint": "eslint --ext .jsx --ext .js .",
"analyze:prettier": "prettier --list-different '**/*.{js,css,md,json}'",
"analyze": "npm run analyze:lint && npm run analyze:prettier",
"build": "yarn run clean && gatsby build",
"deploy": "gatsby build --prefix-paths && node deploy",
"develop": "gatsby develop",
"fix:lint": "eslint --ext .jsx --ext .js . --fix",
"fix:prettier": "prettier --write '**/*.{js,css,md,json}'",
"fix": "npm run fix:lint && npm run fix:prettier",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"prettier": "^1.19.1",
"tailwindcss": "^2.0.2",
"postcss": "^8.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/seamlogic"
},
"bugs": {
"url": "https://github.com/seamlogic/issues"
},
"publishConfig": {
"access": "public"
}
}