-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.36 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
{
"name": "portfolio",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"style": "dist/styles.css",
"repository": {
"type": "git",
"url": "https://git.heroku.com/ericsmithportfolio.git"
},
"scripts": {
"lint": "npm run lintStandard && npm run lintEslint",
"lintStandard": "standard",
"ls": "standard || true",
"lintEslint": "eslint .",
"esl": "eslint . || true",
"start": "node server.js",
"prod": "BABEL_ENV=production NODE_ENV=production webpack --config webpack.production.config.js --profile --colors",
"dev": "BABEL_ENV=development NODE_ENV=dev webpack --config webpack.dev.config.js --profile --colors --optimize-dupe"
},
"engines": {
"node": "6.9.1",
"npm": "3.10.9"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-rewire": "^1.0.0-rc-2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-plugin-webpack-alias": "1.3.0",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"css-loader": "^0.25.0",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"git-rev-sync": "^1.8.0",
"json-loader": "^0.5.4",
"less-loader": "^2.2.3",
"lodash": "^4.17.4",
"postcss-cssnext": "^2.8.0",
"postcss-loader": "^1.1.1",
"postcss-modules-values": "^1.2.2",
"resolve-url": "^0.2.1",
"resolve-url-loader": "^2.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
},
"dependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"classnames": "^2.2.5",
"eventsource-polyfill": "^0.9.6",
"immutable": "^3.8.1",
"less": "^2.7.1",
"react": "^15.4.2",
"react-addons-pure-render-mixin": "^15.4.2",
"react-doc-meta": "^0.2.0",
"react-dom": "^15.4.2",
"react-icons": "^2.2.3",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-scroll": "^1.4.5",
"react-transform-hmr": "^1.0.4",
"redux": "^3.5.2",
"redux-loop": "^2.2.2"
}
}