-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
{
"name": "mortgage-mobx",
"version": "0.0.1",
"description": "Mortgage overpayment calculator",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --config webpack.config.prod.js"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"d3-axis": "^1.0.8",
"d3-scale": "^1.0.6",
"d3-selection": "^1.1.0",
"d3-shape": "^1.2.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
},
"dependencies": {
"mobx": "^3.3.1",
"mobx-react": "^4.3.3",
"mobx-state-tree": "^1.1.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"babel": {
"presets": [
"react",
[
"env",
{
"targets": {
"browsers": [
"last 2 versions"
]
}
}
]
],
"plugins": [
"transform-decorators-legacy"
]
}
}