-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.18 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "flux-boilerplate",
"version": "0.0.1",
"description": "Boilerplate for application that uses the flux Architecture",
"main": "js/app.js",
"dependencies": {
"flux": "^2.0.1",
"react": "~0.12",
"teoria": "^1.2.0",
"react-tools": "~0.12"
},
"devDependencies": {
"array.prototype.find": "^1.0.0",
"benchmark": "^1.0.0",
"browser-sync": "^1.7.0",
"browserify": "~6.1.0",
"browserify-shim": "^3.8.0",
"chai": "^1.9.1",
"envify": "~3.0.0",
"gulp": "^3.8.7",
"gulp-autoprefixer": "^2.0.0",
"gulp-changed": "^1.0.0",
"gulp-filter": "^1.0.2",
"gulp-if": "^1.2.5",
"gulp-imagemin": "^2.0.0",
"gulp-livereload": "^2.1.0",
"gulp-mocha": "^2.0.0",
"gulp-mocha-phantomjs": "^0.5.1",
"gulp-notify": "^1.4.2",
"gulp-open": "^0.3.1",
"gulp-ruby-sass": "^0.7.1",
"gulp-sass": "^1.1.0",
"gulp-sourcemaps": "^1.2.8",
"gulp-util": "^3.0.1",
"immutable": "^3.3.0",
"jest-cli": "~0.1.18",
"jquery": "^2.1.1",
"lodash": "^2.4.1",
"mocha": "^2.0.1",
"mocha-notifier-reporter": "^0.1.0",
"mocha-phantomjs": "^3.5.2",
"phantomjs": "^1.9.12",
"pretty-hrtime": "^0.2.2",
"reactify": "~0.15.2",
"require-dir": "^0.1.0",
"statics": "~0.1.0",
"stripify": "^2.0.0",
"uglify-js": "~2.4.15",
"uglifyify": "^3.0.1",
"vinyl-source-stream": "^1.0.0",
"watchify": "~2.0.0"
},
"scripts": {
"start": "NODE_ENV=development gulp",
"build": "NODE_ENV=production gulp build",
"collect-static": "collect-static . ./static",
"test": "NODE_ENV=test jest"
},
"author": "Yuval Ziegler",
"license": "MIT",
"browserify": {
"extensions": [
".jsx"
],
"transform": [
"browserify-shim",
"reactify",
"envify"
]
},
"browserify-shim": {
"plugin": {
"exports": "plugin",
"depends": [
"jquery:$"
]
}
},
"jest": {
"rootDir": "",
"scriptPreprocessor": "jest/preprocessor.js",
"modulePathIgnorePatterns": [
"/node_modules/",
"/.module-cache/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"unmockedModulePathPatterns": [
""
]
}
}