-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "trainline-client",
"version": "1.0.0",
"description": "A simple two page web application that displays train services departing from London Waterloo station",
"private": true,
"main": "index.js",
"author": "Francesco Fiori <[email protected]>",
"homepage": "https://francescofiori.github.io/trainline-client",
"license": "MIT",
"dependencies": {
"axios": "^0.17.1",
"font-awesome": "^4.7.0",
"history": "^4.7.2",
"moment": "^2.19.2",
"normalize.css": "^7.0.0",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-fontawesome": "^1.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"react-transition-group": "^2.2.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"socket.io-client": "^2.0.4",
"styled-components": "^2.2.3"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.12.0",
"eslint-plugin-react": "^7.5.1",
"gh-pages": "^1.1.0",
"jest": "^21.2.1",
"react-test-renderer": "^16.1.1",
"redux-devtools": "^3.4.1",
"redux-devtools-dock-monitor": "^1.1.2",
"redux-devtools-log-monitor": "^1.4.0",
"redux-immutable-state-invariant": "^2.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "react-scripts test --env=jsdom",
"deploy": "npm run build&&gh-pages -d build"
}
}