forked from cristi-salcescu/todo-search-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "todo-search-react",
"version": "1.0.0",
"description": "A todo app prototyped with React and Gulp",
"author": "Cristi Salcescu",
"license": "UNLICENSED",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"eslint-plugin-react": "^7.11.1",
"gulp": "^3.9.1",
"gulp-cache-bust": "^1.4.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^5.0.0",
"jest": "^23.6.0",
"micro-emitter": "1.1.15",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"lodash": "^4.17.11",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"scripts": {
"test": "jest"
},
"jest": {
"verbose": true,
"moduleDirectories": [
"node_modules"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}