-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.04 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.51",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.51",
"@babel/polyfill": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0-beta.51",
"babel-loader": "^8.0.0-beta.4",
"babel-preset-minify": "^0.4.3",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-markdown": "^3.3.4",
"styled-components": "^3.3.3",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"graphql-request": "^1.8.2",
"jest": "^22.4.4"
},
"scripts": {
"build": "npm run build:client && npm run build:ssr",
"build:client": "webpack --config webpack.client.config.js --mode=\"production\"",
"build:ssr": "webpack --config webpack.ssr.config.js --mode=\"production\"",
"gh-pages": "bash build-static.sh",
"test": "jest"
}
}