-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.35 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
{
"name": "jsjaspreet.com",
"description": "Personal Website",
"version": "1.8.3",
"author": "Jaspreet Singh <[email protected]>",
"keywords": [
"jsjaspreet"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build:client": "webpack --config config/webpack/webpack.client.js",
"build:client:prod": "webpack --config config/webpack/webpack.prod.js",
"clean": "rimraf dist",
"dev": "webpack-dev-server --config config/webpack/webpack.client.js --open --port 9090",
"deploy": "./scripts/deploy.sh",
"docker:build": "npm run build:client:prod && docker build -t topkekkle:${npm_package_version} .",
"docker:start": "docker run -dp 8080:80 -t topkekkle:${npm_package_version}",
"flush": "node ./scripts/flushStaging.js && gulp thumbnails && node ./scripts/generateDB.js",
"release": "standard-version && git push --follow-tags origin master && npm run deploy",
"analyze": "webpack --config config/webpack/webpack.analyze.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"react": "^16.3.1",
"react-dom": "^16.1.1",
"react-fontawesome": "^1.6.1",
"react-ga": "^2.4.1",
"react-helmet": "^5.2.0",
"react-hot-loader": "^3.1.1",
"react-icons": "^2.2.7",
"react-loadable": "^5.3.1",
"react-router-dom": "^4.2.2",
"react-scroll-up": "^1.3.3",
"react-stonecutter": "^0.3.9",
"slugify": "^1.2.9",
"standard-version": "^4.2.0",
"styled-components": "^2.2.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-plugin-inline-import": "^2.0.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"compression-webpack-plugin": "^1.0.1",
"css-loader": "^0.28.7",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^2.30.1",
"rimraf": "^2.6.2",
"standard-version": "^4.2.0",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-chunk-hash": "^0.5.0",
"webpack-cli": "^2.0.9",
"webpack-dev-server": "^2.9.4",
"webpack-merge": "^4.1.2"
}
}