-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.1 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
{
"name": "short-stories",
"version": "0.1.0",
"description": "A site for short stories",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/server_test.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrbgit/short-stories.git"
},
"author": "Michael Bowen",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrbgit/short-stories/issues"
},
"homepage": "https://github.com/mrbgit/short-stories#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.13.3",
"eat": "^0.1.1",
"express": "^4.13.0",
"jquery": "^2.1.4",
"mongoose": "^4.0.6",
"page": "^1.6.3",
"passport": "^0.2.2",
"passport-http": "^0.2.2",
"react-router": "^0.13.3"
},
"devDependencies": {
"babel-core": "^5.6.15",
"babel-loader": "^5.3.1",
"chai": "^3.0.0",
"chai-http": "^1.0.0",
"expect": "^1.6.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-jscs": "^1.8.0",
"grunt-karma": "^0.11.1",
"grunt-simple-mocha": "^0.4.0",
"grunt-webpack": "^1.0.8",
"jasmine-core": "^2.3.4",
"jasmine-react": "^1.1.0",
"jsx-loader": "^0.13.2",
"karma": "^0.12.36",
"karma-chai": "^0.1.0",
"karma-cli": "^0.1.0",
"karma-firefox-launcher": "^0.1.6",
"karma-ie-launcher": "^0.2.0",
"karma-jasmine": "^0.3.6",
"karma-junit-reporter": "^0.2.2",
"karma-mocha": "^0.2.0",
"karma-opera-launcher": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.5.1",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"phantomjs": "^1.9.17",
"phantomjs-polyfill": "0.0.1",
"react": "^0.13.3",
"react-testutils-additions": "^0.13.3",
"requirejs": "^2.1.18",
"superagent": "^1.2.0",
"webpack": "^1.9.11",
"webpack-dev-server": "^1.9.0"
}
}