-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.29 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
107
108
109
110
111
112
113
114
115
116
{
"name": "drawingapp",
"version": "1.0.0",
"description": "react + materialize drawing app",
"main": "index.js",
"repository": "https://github.com/reccanti/Drawing",
"scripts": {
"pretest": "eslint src/**/*.js src/**/*.jsx server/**/*.js test/**/*.js",
"test": "NODE_ENV=test mocha --require ./test/jsdomSetup.js --compilers js:babel-register --recursive ./test",
"buildReact": "gulp react",
"coverage": "NODE_ENV=test DEBUG=false istanbul cover _mocha -- --require ./test/jsdomSetup.js --compilers js:babel-register --recursive ./test",
"start": "gulp build && node ./bin/www",
"debug": "gulp react && DEBUG=express:* node ./bin/www",
"watch": "gulp watch",
"build": "gulp clean && gulp build"
},
"author": "Ben Wilcox",
"license": "MIT",
"dependencies": {
"atrament": "github:reccanti/atrament.js",
"base64-stream": "^0.1.3",
"body-parser": "^1.15.0",
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"compression": "^1.6.1",
"connect-redis": "^3.0.2",
"cookie-parser": "^1.4.1",
"csurf": "^1.8.3",
"del": "^2.2.0",
"express": "^4.13.4",
"express-session": "^1.13.0",
"gridfs-stream": "^1.1.1",
"gulp": "^3.9.1",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^2.2.0",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"hammerjs": "^2.0.6",
"jade": "^1.11.0",
"jquery": "^2.2.2",
"lodash": "^4.6.1",
"materialize-css": "^0.97.6",
"merge-stream": "^1.0.0",
"mongoose": "^4.4.10",
"node-fetch": "^1.5.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-radio-group": "^2.2.0",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"react-social": "^1.1.0",
"reactify": "^1.1.1",
"redux": "^3.3.1",
"redux-thunk": "^2.0.1",
"serve-favicon": "^2.3.0",
"shortid": "^2.2.6",
"socket.io": "^1.4.5",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0",
"whatwg-fetch": "^0.11.0"
},
"devDependencies": {
"babel-jest": "^9.0.3",
"babel-preset-es2015": "*",
"babel-preset-react": "*",
"babel-register": "*",
"canvas": "^1.3.12",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-jsx-a11y": "^1.0.3",
"eslint-plugin-react": "^4.2.3",
"gulp-clean": "^0.3.2",
"istanbul": "^1.0.0-alpha.2",
"jasmine-node": "^1.14.5",
"jest-cli": "^0.9.2",
"jsdom": "^8.3.0",
"mocha": "^2.4.5",
"proxyquire": "^1.7.4",
"react-addons-test-utils": "^0.14.7",
"redux-devtools": "^3.1.1",
"streamify": "^0.2.5",
"supertest": "^1.2.0",
"watchify": "^3.7.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"jquery": "./node_modules/jquery/dist/jquery.js",
"materialize-js": "./node_modules/materialize-css/bin/materialize.js"
},
"browserify-shim": {
"jquery": "$",
"materialize-js": {
"exports": "Matrialize",
"depends": [
"jquery:jquery"
]
}
},
"jest": {
"automock": false,
"unmockedModulePathPatterns": [
"./node_modules/mongoose",
"./node_modules/react",
"./node_modules/react-dom",
"./node_modules/react-addons-test-utils"
]
}
}