-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.61 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
72
{
"name": "react-appliance-calculator",
"version": "0.1.0",
"dependencies": {
"react-bootstrap": "^0.28.5",
"react-bootstrap-select": "^0.14.0"
},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babelify": "^6.1.3",
"browser-sync": "latest",
"browserify": "latest",
"browserify-shim": "^3.8.0",
"del": "~0.1.3",
"gulp": ">=3.8.8",
"gulp-autoprefixer": "~1.0.1",
"gulp-bower": "0.0.6",
"gulp-cache": "~0.2.4",
"gulp-imagemin": "latest",
"gulp-jshint": "~1.8.5",
"gulp-load-plugins": "~0.7.0",
"gulp-ruby-sass": "~1.0.5",
"gulp-size": "~1.1.0",
"gulp-strip-debug": "^1.0.2",
"gulp-uglify": "^1.0.2",
"gulp-useref": "~0.4.4",
"gulp-util": "~3.0.1",
"gulp-webserver": "latest",
"main-bower-files": "~2.6.2",
"react": "latest",
"react-dom": "latest",
"react-tools": "latest",
"reactify": "latest",
"strip-debug": "^1.0.1",
"vinyl-source-stream": "^1.0.0",
"watchify": "~2.1",
"webpack": "^1.12.15"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
},
"browserify": {
"transform": [
"browserify-shim",
[
"babelify",
{
"ignore": [
"bower_components"
]
}
]
]
},
"browser": {
"jquery": "./app/bower_components/jquery/dist/jquery.js"
},
"browserify-shim": {
"jquery": "$"
}
}