-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.62 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
{
"name": "react-material-starter-project",
"version": "0.1.0",
"description": "Lightweight starting point for a react web app.",
"keywords": [
"react",
"starterkit",
"frontend",
"boilerplate",
"reflux",
"react-router"
],
"main": "index.html",
"scripts": {
"start": "gulp",
"test": "jest"
},
"author": "@dburdick",
"license": "MIT",
"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-less": "^3.0.3",
"gulp-livereload": "^3.8.0",
"gulp-load-plugins": "^0.9.0",
"gulp-minify-css": "^0.3.11",
"gulp-size": "^1.2.1",
"gulp-stylus": "^2.0.1",
"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",
"browserify": "^7.0.3",
"whatwg-fetch": "^0.9.0"
},
"dependencies": {
"react": "^0.13.3",
"react-router": "^0.13.2",
"reflux": "^0.2.7",
"material-ui": "^0.10.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js",
"jsx"
],
"moduleFileExtensions": [
"js",
"json",
"jsx",
"es6"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/object-assign",
"<rootDir>/test-utils/stubRouterContext.jsx"
]
}
}