-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.55 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
{
"name": "todo-redux",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "gulp",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/mathieuhays/Todo-Redux.git"
},
"author": "Mathieu HAYS <[email protected]> (https://mathieuhays.co.uk/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathieuhays/Todo-Redux/issues"
},
"homepage": "https://github.com/mathieuhays/Todo-Redux",
"dependencies": {
"react": "^0.14.3",
"react-dom": "^0.14.3",
"redux": "^3.0.4"
},
"devDependencies": {
"babel-core": "^4.7.0",
"babel-jest": "^4.0.0",
"babel-loader": "^4.2.0",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-autoprefixer": "^2.1.0",
"gulp-concat": "^2.5.2",
"gulp-connect": "^2.2.0",
"gulp-livereload": "^3.8.0",
"gulp-load-plugins": "^0.9.0",
"gulp-size": "^1.2.1",
"gulp-sass": "~1.3.3",
"gulp-uglifyjs": "^0.6.1",
"gulp-util": "^3.0.4",
"gulp-watch": "^4.2.1",
"gulp-webpack": "^1.3.0",
"jest-cli": "^0.4.0",
"object-assign": "^2.0.0",
"react-tools": "^0.13.1",
"webpack": "^1.7.3",
"redux-devtools": "~2.1.5"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js",
"jsx"
],
"moduleFileExtensions": [
"js",
"json",
"jsx",
"es6"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}