-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 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
{
"name": "http-codes",
"version": "1.0.0",
"description": "Small web app to reference HTTP status code meanings",
"main": "app.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack-dev-server --content-base build/ --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheOdd/http-codes.git"
},
"author": "TheOdd",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheOdd/http-codes/issues"
},
"homepage": "https://github.com/TheOdd/http-codes#readme",
"dependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react": "^15.6.1",
"react-bootstrap": "^0.31.3",
"react-dom": "^15.6.1",
"react-html-parser": "^2.0.0",
"uuid": "^3.1.0",
"webpack": "^2.7.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-preset-env": "^1.6.0",
"webpack-dev-server": "^2.5.1",
"webpack-merge": "^4.1.0"
}
}