-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 990 Bytes
/
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
{
"name": "my-blog",
"version": "1.0.0",
"private": true,
"homepage": "http://hefei00.github.io",
"dependencies": {
"react": "next",
"react-dom": "next"
},
"devDependencies": {
"axios": "^0.15.3",
"base64-url": "^1.3.3",
"browser-sync": "^2.18.8",
"gh-pages": "^1.0.0",
"highlight.js": "^9.11.0",
"markdown-it": "^8.3.1",
"react-loading": "^0.0.9",
"react-markdown": "^2.4.6",
"react-redux": "^5.0.3",
"react-router-dom": "^4.1.1",
"react-scripts": "^1.0.11",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"gulp": "^3.9.1",
"gulp-replace": "^0.5.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"postbuild": "gulp move",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"browser-sync": "browser-sync start -p 'http://localhost:3000' -f './src/*' ",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
}