-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.36 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.36 KB
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
{
"name": "syx",
"version": "0.1.0",
"description": "Syx is a blogging platform for technical learning.",
"repository": "https://github.com/apurv/syx",
"scripts": {
"build": "webpack --progress --colors",
"start": "node ./server/start.js",
"test": "set BABEL_ENV=test; export BABEL_ENV=test; mocha --compilers js:babel/register app/**/*-test.js --recursive",
"test:w": "chokidar '**/*.js' -i 'node_modules' -c 'npm run --silent test'",
"test:d": "set BABEL_ENV=test; export BABEL_ENV=test; mocha --compilers js:babel/register app/**/*-test.js --recursive --debug-brk"
},
"homepage": "https://syx.io",
"author": "Apurv Parikh, Angie Yang, Samuel Leavin, Thomas Proenza",
"keywords": [
"blog",
"blogging",
"learning",
"technical",
"programming",
"tutorials",
"guides"
],
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/apurv/syx/issues"
},
"engines": {
"node": "0.10.x"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-loader": "^5.2.2",
"babel-plugin-react-transform": "^1.0.3",
"chokidar-cli": "^1.0.0",
"css-loader": "^0.19.0",
"eslint": "^1.3.1",
"eslint-plugin-react": "^3.3.1",
"express": "^4.13.3",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.1",
"socket.io": "^1.3.5",
"style-loader": "^0.12.3",
"webpack": "^1.10.0",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^2.10.2",
"body-parser": "^1.14.1",
"bootstrap": "^3.3.5",
"chalk": "^1.1.1",
"connect-mongo": "^0.8.2",
"cookie-parser": "^1.4.0",
"exports-loader": "^0.6.2",
"express-session": "^1.11.3",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"imports-loader": "^0.6.4",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"lodash": "^3.10.1",
"mongoose": "^4.1.10",
"passport": "^0.3.0",
"passport-github": "^1.0.0",
"passport-google-oauth": "^0.2.0",
"passport-local": "^1.0.0",
"q": "^1.4.1",
"react": "^0.14.0-beta3",
"react-dom": "^0.14.0-beta3",
"serve-favicon": "^2.3.0",
"socket.io-client": "^1.3.5",
"url-loader": "^0.5.6"
}
}