forked from ga-wdi-exercises/react_to-do
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "general-assembly-react-to-do",
"version": "0.3.0",
"description": "A to-do app in Node.js and React.js",
"main": "server.js",
"engines": {
"node": "7.0.0"
},
"private": true,
"scripts": {
"clean": "rm -rf dist && rm -rf node_modules",
"heroku-prebuild": "scripts/deployment_react.sh",
"heroku-postbuild": "scripts/deployment_cleanup.sh",
"start": "node server.js",
"rebuild": "webpack -d --progress",
"watch": "webpack -d --progress --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ga-wdi-exercises/react_to-do.git"
},
"author": "Jason Seminara",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/ga-wdi-exercises/react_to-do/issues"
},
"homepage": "https://github.com/ga-wdi-exercises/react_to-do#readme",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"morgan": "^1.7.0",
"path": "^0.12.7",
"pg-promise": "^5.3.5"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-strict-mode": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"html-webpack-template": "^5.4.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3"
}
}