-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 925 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 925 Bytes
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
{
"name": "okb-pixel-pusher-blog",
"version": "0.0.2",
"homepage": "https://orlandobrown.uk",
"private": true,
"scripts": {
"start": "npm run build:posts && react-static start",
"stage": "npm run build:posts && react-static build --staging",
"build": "npm run build:posts && react-static build",
"build:posts": "rm ./src/posts/index.js && node static.build.posts.js",
"serve": "serve dist -p 3000 -s",
"predeploy": "npm run build && cp CNAME dist",
"deploy": "gh-pages -d dist"
},
"reactStaticCustom": {
"postsLocation": "./src/posts"
},
"dependencies": {
"@reach/router": "^1.2.1",
"axios": "^0.18.0",
"config": "^3.0.1",
"gh-pages": "^2.0.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-hot-loader": "^4.3.12",
"react-static": "^6.0.2"
},
"devDependencies": {
"eslint-config-react-tools": "1.x.x",
"serve": "10.1.1"
}
}