-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.66 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "trains-react-redux",
"version": "1.0.0",
"description": "A train timetable app",
"main": "index.js",
"scripts": {
"test": "jest --config jest.config.json --watch",
"coverage": "jest --config jest.config.json --watch --coverage",
"eslint": "eslint .",
"dev": "webpack --config webpack.config.dev.js",
"serve": "webpack-dev-server --config webpack.config.dev.js",
"prod": "webpack --config webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woolm110/trains-react-redux.git"
},
"author": "woolm110",
"bugs": {
"url": "https://github.com/woolm110/trains-react-redux/issues"
},
"homepage": "https://github.com/woolm110/trains-react-redux#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"eslint": "^4.2.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-ostmodern": "git+https://github.com/ostmodern/ostmodern-angular-eslint-rules.git",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsx-a11y": "^5.0.0",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.29.0",
"jest": "^20.0.4",
"node-sass": "^4.5.3",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"regenerator-runtime": "^0.10.5",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.1.0",
"webpack-dev-server": "^2.5.1"
},
"dependencies": {
"autoprefixer": "^7.1.2",
"axios": "^0.16.2",
"babel-polyfill": "^6.23.0",
"css-loader": "^0.28.4",
"cssnano": "^3.10.0",
"eircode-js": "^0.1.4",
"eslint-import-resolver-webpack": "^0.8.3",
"file-loader": "^0.11.2",
"history": "^4.6.3",
"lodash": "^4.17.4",
"normalize.css": "^7.0.0",
"postcss-loader": "^2.0.6",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.0.3",
"redux-mock-store": "^1.2.3",
"redux-thunk": "^2.2.0"
}
}