-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.21 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
{
"name": "personal-site",
"version": "2.0.4",
"description": "Source code for my personal website",
"main": "build/index.html",
"scripts": {
"start": "npm run server",
"build": "webpack --progress --colors",
"build:prod": "cross-env NODE_ENV=production npm run build",
"server": "webpack-dev-server --content-base dist/",
"test": "cross-env NODE_ENV=test mocha-webpack --webpack-config webpack.config.js --require jsdom-global/register \"src/**/*.spec.jsx\"",
"testWatch": "cross-env NODE_ENV=test mocha-webpack --webpack-config webpack.config.js --require jsdom-global/register --watch \"src/**/*.spec.jsx\"",
"coverage": "nyc npm test",
"lint": "eslint -c .eslintrc.json --ext .jsx,.js ./src && stylelint \"./src/**/*.scss\"",
"deploy": "npm run build:prod && gh-pages -b master -d build"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"exclude": [
".tmp",
"config",
"webpack.config.js",
"src/**/*.spec.jsx"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdolle/jdolle.github.io.git"
},
"author": "Jeff Dolle",
"license": "MIT",
"homepage": "https://github.com/jdolle/jdolle.github.io#readme",
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-istanbul": "^4.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-react": "^6.22.0",
"canvas": "^1.6.3",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.15",
"coveralls": "^2.11.15",
"css-loader": "^0.26.1",
"css-mqpacker": "^5.0.1",
"enzyme": "^2.7.1",
"eslint": "^3.14.1",
"eslint-config-babel": "^6.0.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"gh-pages": "^0.12.0",
"html-webpack-plugin": "^2.28.0",
"jsdom": "9.10.0",
"jsdom-global": "2.1.1",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"mocha-webpack": "^1.0.0-beta.1",
"node-sass": "^4.4.0",
"normalize.css": "^5.0.0",
"nyc": "^10.1.2",
"postcss-loader": "^1.3.0",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-ga": "^2.1.2",
"react-hot-loader": "^1.3.1",
"resolve-url-loader": "^1.6.1",
"sass-loader": "^4.1.1",
"shallowequal": "^0.2.2",
"sinon": "^1.17.7",
"style-loader": "^0.13.1",
"stylelint-webpack-plugin": "^0.5.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^1.16.2",
"webpack-node-externals": "^1.5.4",
"webpack-uglify-js-plugin": "^1.1.9"
},
"dependencies": {
"cross-env": "^3.1.4",
"react-dom": "^15.4.2",
"react-router": "^3.0.2",
"webpack-merge": "^2.6.1"
}
}