-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·92 lines (92 loc) · 2.67 KB
/
package.json
File metadata and controls
executable file
·92 lines (92 loc) · 2.67 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
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
{
"name": "bootcamp_06052017",
"version": "1.0.0",
"description": "Starter project for React/Redux",
"main": "index.js",
"scripts": {
"start": "npm run build && concurrently \"npm run rest\" \"npm run web\"",
"clean": "rimraf dist",
"build": "npm run clean && npm run webpack-once",
"web": "webpack-dev-server",
"webpack": "webpack --watch",
"webpack-once": "webpack",
"rest": "json-server --watch --port 3010 db.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/training4developers/bootcamp_06052017.git"
},
"author": "Eric W. Greene",
"license": "MIT",
"bugs": {
"url": "https://github.com/training4developers/bootcamp_06052017/issues"
},
"homepage": "https://github.com/training4developers/bootcamp_06052017#readme",
"devDependencies": {
"concurrently": "^3.0.0",
"json-server": "^0.9.4",
"rimraf": "^2.5.3",
"sass-lint": "^1.10.2",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"autoprefixer": "^6.3.7",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.9.1",
"babel-preset-env": "^1.5.2",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"bootstrap": "4.0.0-alpha.5",
"bootstrap-loader": "2.0.0-beta.20",
"color-namer": "^1.1.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"es6-promise": "^4.0.5",
"eslint": "^3.13.1",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-react": "^6.9.0",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.22.0",
"imports-loader": "^0.7.0",
"key-mirror": "^1.0.1",
"node-fetch": "^1.6.3",
"node-sass": "^4.3.0",
"null-loader": "^0.1.1",
"pluralize": "^4.0.0",
"postcss": "^5.2.10",
"postcss-loader": "^1.2.2",
"prop-types": "^15.5.8",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^5.0.4",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"resolve-url-loader": "^2.0.2",
"rxjs": "^5.4.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"url-loader": "^0.5.7",
"webpack": "^2.3.3",
"whatwg-fetch": "^2.0.1"
},
"devServer": {
"contentBase": "dist",
"historyApiFallback": true,
"port": 3000,
"proxy": {
"/api": {
"target": "http://localhost:3010",
"changeOrigin": true
}
}
}
}