-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.79 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
79
80
81
82
83
84
85
86
{
"scripts": {
"api": "node ratingsAPI.js",
"format": "prettier --single-quote --trailing-comma es5 --write \"{js, __{tests,mocks}__}/**/*.js\"",
"lint": "eslint */*.{js,jsx} --debug",
"build": "webpack -p",
"build:dev": "webpack -d",
"dev": "NODE_ENV=development nodemon server.js",
"start": "NODE_ENV=server node server.js",
"test": "jest",
"test:update": "NODE_ENV=test jest -u"
},
"dependencies": {
"axios": "0.16.1",
"babel-plugin-dynamic-import-webpack": "1.0.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-register": "6.24.1",
"compression": "1.6.2",
"cors": "2.8.3",
"express": "4.15.3",
"immutability-helper": "^2.6.4",
"lodash": "4.17.4",
"material-ui": "^0.20.0",
"preact": "8.1.0",
"preact-compat": "3.16.0",
"prop-types": "15.5.10",
"react": "15.5.4",
"react-addons-perf": "15.4.2",
"react-dom": "15.5.4",
"react-redux": "5.0.5",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "3.6.0",
"redux-form": "^7.2.3",
"redux-thunk": "2.2.0",
"styled-components": "2.0.0",
"webpack": "3.4.1",
"webpack-dev-middleware": "1.10.2",
"webpack-hot-middleware": "2.18.0"
},
"devDependencies": {
"babel-core": "6.24.1",
"babel-eslint": "^8.1.1",
"babel-loader": "7.0.0",
"babel-plugin-dynamic-import-node": "1.0.2",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "1.5.1",
"babel-preset-react": "6.24.1",
"css-loader": "^0.28.9",
"enzyme": "2.8.2",
"eslint": "4.14.0",
"eslint-config-airbnb": "15.0.1",
"eslint-config-prettier": "2.1.1",
"eslint-config-react": "1.1.7",
"eslint-loader": "1.7.1",
"eslint-plugin-flow": "2.29.1",
"eslint-plugin-flowtype": "2.33.0",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-react": "7.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"flow-bin": "0.47.0",
"jest": "20.0.4",
"jest-serializer-enzyme": "1.0.0",
"moxios": "0.4.0",
"node-sass": "^4.7.2",
"nodemon": "1.11.0",
"prettier": "1.3.1",
"react-hot-loader": "3.0.0-beta.6",
"react-test-renderer": "15.5.4",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.1",
"webpack-dev-server": "2.4.5"
},
"name": "react-petowner-todo",
"version": "1.0.0",
"description": "A web application built on React and Redux.",
"main": "server.js",
"repository": "[email protected]:btholt/complete-intro-to-react.git",
"author": "Lindsey Cheng <[email protected]>",
"license": "MIT"
}