-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.09 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.09 KB
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
{
"name": "interactive_resume",
"version": "2.0.0",
"description": "My Interactive Resume that connects to my Github account and displays my data",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --hot --inline --config webpack.dev.config.js",
"prebuild": "rimraf public",
"build": "cross-env NODE_ENV=production webpack -p --config webpack.pro.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Phaze1D/Interactive-Resume.git"
},
"author": "David Villarreal",
"license": "ISC",
"bugs": {
"url": "https://github.com/Phaze1D/Interactive-Resume/issues"
},
"homepage": "https://github.com/Phaze1D/Interactive-Resume#readme",
"dependencies": {
"autosize": "^3.0.21",
"axios": "^0.16.2",
"classnames": "^2.2.5",
"immutable": "^3.8.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"reduce-reducers": "^0.1.2",
"redux": "^3.7.1",
"redux-immutable": "^4.0.0",
"redux-promise-middleware": "^4.2.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-inline-import": "^2.0.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"eslint": "^4.1.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-loader": "^0.4.5",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^3.0.0",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.0.0",
"webpack-bundle-analyzer": "^2.8.3",
"webpack-dev-server": "^2.5.1"
}
}