-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.72 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
{
"name": "react-paint",
"version": "1.0.0",
"description": "React application template using webpack",
"engines": {
"node": "7.1.0"
},
"main": "server.js",
"private": true,
"scripts": {
"clean": "rm -rf dist && rm -rf node_modules",
"heroku-prebuild": "bash ./scripts/deployment_react.sh",
"heroku-postbuild": "bash ./scripts/deployment_cleanup.sh",
"rebuild": "webpack -d --progress --colors",
"watch": "webpack -d --progress --watch"
},
"repository": {
"type": "",
"url": ""
},
"author": "Phil Winchester",
"license": "Help Yourself",
"bugs": {
"url": "https://github.com/gittheking/react_template/issues"
},
"homepage": "https://github.com/gittheking/react_template#readme",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"morgan": "^1.7.0",
"path": "^0.12.7",
"pg-promise": "^5.2.7"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-strict-mode": "^6.11.3",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"html-webpack-template": "^5.0.0",
"postcss-loader": "^1.1.1",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"react-color": "^2.8.0"
}
}