-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.37 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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "partisan",
"repository": "https://github.com/jonlaing/partisan-io",
"version": "0.1.0",
"description": "Partisan: Social networking app for discussion (arguing) regarding politics.",
"author": "Jon Laing",
"license": "MIT",
"devDependencies": {
"babelify": "^6.1.1",
"browserify": "^10.2.1",
"eslint": "^1.3.1",
"eslint-plugin-react": "^3.3.1",
"gulp": "^3.8.7",
"gulp-connect": "^2.2.0",
"gulp-sass": "^2.0.1",
"gulp-util": "^3.0.4",
"jest-cli": "^0.5.1",
"reactify": "^1.1.1",
"require-dir": "^0.3.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.2.1"
},
"scripts": {
"dev": "gulp --type dev",
"start": "gulp",
"build": "gulp build"
},
"eslintConfig": {
"plugins": [
"react"
],
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"env": {
"es6": true,
"jquery": true
},
"globals": {
"document": true,
"console": true,
"window": true,
"global": true,
"$": true
},
"rules": {
"no-use-before-define": 0,
"no-script-url": 0,
"no-underscore-dangle": 0,
"no-console": 0,
"camelcase": [
2,
{
"properties": "never"
}
],
"quotes": [
0,
"double"
]
}
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
},
"dependencies": {
"fbjs": "^0.4.0",
"flux": "^2.0.3",
"font-awesome": "^4.4.0",
"foundation-sites": "^5.5.2",
"glob": "^5.0.14",
"jquery": "^2.1.4",
"marked": "^0.3.5",
"material-ui": "^0.8.0",
"material-ui-sass": "^0.7.5",
"moment": "^2.10.6",
"node-sass": "^3.4.2",
"object-assign": "^2.0.0",
"parse-address": "0.0.4",
"react": "^0.14.3",
"react-addons": "^0.9.0",
"react-addons-css-transition-group": "^0.14.3",
"react-addons-perf": "^0.14.3",
"react-checkbox-group": "^0.2.0",
"react-dom": "^0.14.3",
"react-dropzone": "^2.1.0",
"react-fontawesome": "^0.3.3",
"react-radio": "^1.0.6",
"react-slider": "^0.6.0",
"react-tap-event-plugin": "^0.2.1",
"sass": "^0.5.0",
"whatwg-fetch": "^1.0.0",
"window-blur-mixin": "^1.0.1"
}
}