-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.56 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
{
"name": "lets-grow",
"version": "1.0.0",
"description": "An app built using React listing how to grow a selection of fruit and vegetables in the garden",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --inline --content-base . --history-api-fallback",
"test": "jest"
},
"jest": {
"unmockedModulePathPatterns": [
"node_modules/react/",
"node_modules/enzyme/"
]
},
"repository": {
"type": "git",
"url": "https://github.com/jamesdsmyth/lets-grow.git"
},
"author": "James Smyth",
"license": "ISC",
"bugs": {
"url": "https://github.com/jamesdsmyth/lets-grow/issues"
},
"homepage": "https://github.com/jamesdsmyth/lets-grow",
"babel": {
"plugins": [
"transform-object-rest-spread"
],
"presets": [ "es2015", "react" ]
},
"dependencies": {
"lodash": "^4.13.1",
"moment": "^2.11.2",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^2.0.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0"
},
"devDependencies": {
"babel-core": "^6.5.1",
"babel-jest": "^13.2.2",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.3.0",
"http-server": "^0.8.5",
"jest-cli": "^13.2.3",
"node-sass": "^3.4.2",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}