-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.12 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
{
"name": "formula1",
"version": "1.0.0",
"description": "Formula 1 website",
"scripts": {
"build": "webpack",
"build:prod": "NODE_ENV=production webpack",
"start": "NODE_ENV=dev node server",
"start:prod": "NODE_ENV=production node server",
"clean": "rm -rf ./dist",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": ""
},
"license": "MIT",
"devDependencies": {
"babel-core": "6.8.0",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.4",
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "6.8.0",
"classnames": "2.2.5",
"css-loader": "^0.23.1",
"css-modules-require-hook": "^4.0.5",
"ejs": "^2.5.2",
"eslint": "2.10.1",
"eslint-config-standard": "5.3.1",
"eslint-plugin-promise": "1.1.0",
"eslint-plugin-react": "5.1.1",
"eslint-plugin-standard": "1.3.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"font-awesome": "^4.6.3",
"handlebars": "^4.0.6",
"handlebars-loader": "^1.4.0",
"html-webpack-plugin": "2.17.0",
"isomorphic-style-loader": "^1.0.0",
"json-loader": "^0.5.4",
"json-stringify-safe": "^5.0.1",
"mobx": "2.6.3",
"mobx-react": "3.5.3",
"mobx-react-devtools": "^4.2.6",
"node-sass": "^3.10.0",
"react": "15.0.2",
"react-dom": "15.0.2",
"react-hot-loader": "1.3.0",
"react-router": "2.4.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "1.13.0",
"webpack-dev-server": "1.14.1",
"webpack-hot-middleware": "^2.12.2",
"webpack-isomorphic-tools": "^2.6.4"
},
"dependencies": {
"body-parser": "^1.15.2",
"es6-promise": "^4.0.3",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"fetch": "^1.1.0",
"img-loader": "^1.3.1",
"isomorphic-fetch": "^2.2.1",
"node-fetch": "^1.6.2",
"phantom": "^2.1.21",
"react-router": "^2.4.0",
"style-loader": "^0.13.1"
}
}