-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
111 lines (111 loc) · 3.82 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "gatsby-wordpress-typescript-scss-blog",
"private": true,
"description": "A Gatsby starter template for a Wordpress blog, built using Typescript, SCSS and Ant Design",
"version": "1.0.4",
"author": "Sagar Jain <sagar7993@gmail.com>",
"homepage": "https://github.com/sagar7993/gatsby-wordpress-typescript-scss-blog",
"keywords": [
"gatsby",
"gatsby-starter",
"gatsby-starter-template",
"gatsby-typescript",
"gatsby-social-widgets",
"gatsby-pinterest",
"gatsby-twitter",
"gatsby-facebook",
"social-widgets",
"pinterest-widget",
"pinterest-save",
"facebook-widget",
"facebook-like-button",
"facebook-profile",
"facebook-timeline",
"twitter-widget",
"twitter-follow-button",
"twitter-profile",
"twitter-timeline"
],
"license": "MIT",
"scripts": {
"build": "npm run purgeCache && npm run lint && cp ./src/environments/.env.production ./.env.production && gatsby build",
"start": "npm run purgeCache && npm run lint && cp ./src/environments/.env.development ./.env.development && gatsby develop",
"serve": "npm run purgeCache && npm run lint && cp ./src/environments/.env.development ./.env.development && gatsby build && gatsby serve",
"lint": "tslint -c tslint.json -p tsconfig.json ./src/**/*.{ts,tsx}",
"purgeAll": "rm -rf node_modules && rm -rf yarn.lock rm -rf package-lock.json && rm -rf .cache && rm -rf public && npm install",
"purgeCache": "rm -rf .cache && rm -rf public",
"purgeDependencies": "rm -rf node_modules && rm -rf yarn.lock rm -rf package-lock.json && npm install"
},
"dependencies": {
"antd": "^3.0.0",
"axios": "^0.19.0",
"gatsby": "^2.0.0",
"gatsby-image": "^2.0.0",
"gatsby-paginate": "^1.0.0",
"gatsby-plugin-advanced-sitemap": "^1.0.0",
"gatsby-plugin-antd": "^2.0.0",
"gatsby-plugin-catch-links": "^2.1.13",
"gatsby-plugin-google-analytics": "^2.0.0",
"gatsby-plugin-import": "^2.0.0",
"gatsby-plugin-manifest": "^2.0.0",
"gatsby-plugin-offline": "^3.0.0",
"gatsby-plugin-pinterest-twitter-facebook": "^1.0.0",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-robots-txt": "^1.0.0",
"gatsby-plugin-sass": "^2.0.0",
"gatsby-plugin-sharp": "^2.0.0",
"gatsby-plugin-typescript": "^2.0.0",
"gatsby-source-filesystem": "^2.0.0",
"gatsby-source-instagram": "^0.5.0",
"gatsby-source-wordpress": "^3.0.0",
"gatsby-transformer-sharp": "^2.0.0",
"gatsby-transformer-yaml": "^2.0.0",
"gatsby-wordpress-inline-images": "^1.0.0",
"path": "^0.12.7",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "^5.0.0"
},
"devDependencies": {
"@types/enzyme": "^3.0.0",
"@types/enzyme-adapter-react-16": "^1.0.0",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.0.0",
"@types/react-dom": "^16.0.0",
"@types/react-helmet": "^5.0.0",
"@types/react-test-renderer": "^16.0.0",
"babel-plugin-import": "^1.0.0",
"dotenv": "^8.0.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"gatsby-plugin-tslint": "^0.0.2",
"husky": "^3.0.0",
"node-sass": "^4.0.0",
"react-test-renderer": "^16.0.0",
"source-map-explorer": "^2.0.0",
"tslint": "^5.20.0",
"tslint-loader": "^3.5.4",
"tslint-react": "^4.0.0",
"typescript": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run build && git add public && git commit -m 'fix: updated public folder for release'"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "https://github.com/sagar7993/gatsby-wordpress-typescript-scss-blog"
},
"bugs": {
"url": "https://github.com/sagar7993/gatsby-wordpress-typescript-scss-blog/issues"
}
}