-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.41 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
{
"name": "example-api",
"version": "1.0.0",
"description": "MovieTracker",
"engines": {
"node": "6.4.0",
"npm": "3.10.x"
},
"scripts": {
"build": "webpack --config ./webpack.config.js",
"dev-server": "webpack-dev-server --hot --inline --content-base --history-api-fallback",
"start": "node server.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "./node_modules/.bin/eslint ./"
},
"keywords": [],
"author": "Taylor Moore",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.26.0",
"bluebird": "^3.3.4",
"body-parser": "^1.16.0",
"css-loader": "^0.28.7",
"css-star-rating": "^1.1.3",
"error-ex": "^1.3.1",
"express": "^4.14.0",
"express-cors": "0.0.3",
"history": "^4.6.3",
"pg-promise": "^3.2.3",
"raf": "^3.4.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.2",
"react-router": "^4.1.1",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.16.0",
"email-validator": "^1.1.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^4.9.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"fetch-mock": "^5.13.1",
"jest": "^21.2.1",
"node-sass": "^4.5.3",
"prop-types": "^15.6.0",
"react-hot-loader": "^1.3.1",
"react-test-renderer": "^16.0.0",
"redux-devtools": "^3.4.0",
"redux-devtools-dock-monitor": "^1.1.2",
"redux-devtools-log-monitor": "^1.3.0",
"redux-mock-store": "^1.3.0",
"sass": "^1.0.0-beta.2",
"sass-loader": "^6.0.6",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.15.0"
},
"jest": {
"setupFiles": [
"raf/polyfill",
"./testConfig/setupTests.js"
],
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/testConfig/styleMock.js"
}
}
}