-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
92 lines (92 loc) · 2.43 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
{
"name": "react-spa",
"private": false,
"version": "0.0.1",
"description": "Community site SPA Proof of Concept based on ReactJS",
"repository": "https://github.com/WRidder/react-spa",
"license": "MIT",
"dependencies": {
"aug": "0.1.0",
"immutable": "3.6.4",
"jquery": "2.1.3",
"marked": "0.3.3",
"material-ui": "0.7.1",
"q": "1.2.0",
"react": "0.12.2",
"react-document-title": "1.0.2",
"react-immutable-render-mixin": "0.8.0",
"react-router": "0.12.4",
"react-spinner": "0.2.1",
"react-tap-event-plugin": "0.1.4",
"reflux": "0.2.6",
"setimmediate2": "1.1.4",
"simple-markdown": "0.0.2",
"socket.io-client": "1.3.5",
"zxcvbn": "1.0.0"
},
"devDependencies": {
"babel-core": "4.7.8",
"babel-eslint": "2.0.0",
"babel-loader": "4.1.0",
"bower": "1.3.12",
"connect-livereload": "0.5.3",
"del": "1.1.1",
"eslint": "0.16.2",
"eslint-loader": "0.6.0",
"gulp": "3.8.11",
"gulp-autoprefixer": "2.1.0",
"gulp-cache": "0.2.8",
"gulp-changed": "1.2.1",
"gulp-concat": "2.5.2",
"gulp-csscomb": "3.0.3",
"gulp-extend": "0.2.0",
"gulp-filter": "2.0.2",
"gulp-gh-pages": "0.4.0",
"gulp-htmlmin": "1.1.1",
"gulp-if": "1.2.5",
"gulp-jsbeautifier": "0.0.6",
"gulp-jshint": "1.9.2",
"gulp-less": "3.0.1",
"gulp-load-plugins": "0.8.1",
"gulp-minify-css": "1.0.0",
"gulp-order": "1.1.1",
"gulp-plumber": "1.0.0",
"gulp-render": "0.2.2",
"gulp-replace": "0.5.3",
"gulp-sass": "1.3.3",
"gulp-size": "1.2.1",
"gulp-sourcemaps": "1.5.0",
"gulp-uglify": "1.1.0",
"gulp-util": "3.0.4",
"imports-loader": "0.6.3",
"jest-cli": "0.4.0",
"json-loader": "0.5.1",
"merge-stream": "0.1.7",
"minimist": "1.1.1",
"protractor": "1.8.0",
"psi": "1.0.6",
"react-tools": "0.12.2",
"run-sequence": "1.0.2",
"tiny-lr": "0.1.5",
"url-loader": "0.5.5",
"webpack": "1.7.3"
},
"scripts": {
"preinstall": "cd ./server && npm install",
"postinstall": "bower install && npm run build",
"buildrelease": "gulp build --release",
"build": "gulp build",
"start": "cd ./server/ && node ./src/server.js disableLiveReload",
"test": "jest"
},
"engines": {
"node": "0.10.x"
},
"jest": {
"rootDir": "./client/src",
"scriptPreprocessor": "../../config/preprocessor.js",
"unmockedModulePathPatterns": [
"react"
]
}
}