forked from mikeebowen/short-stories
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"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": {
"body-parser": "^1.13.1",
"express": "^4.13.0",
"mongoose": "^4.0.6"
},
"devDependencies": {
"chai": "^3.0.0",
"chai-http": "^1.0.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",
"jsx-loader": "^0.13.2",
"karma": "^0.12.36",
"karma-chai": "^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-opera-launcher": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.0",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"phantomjs": "^1.9.17",
"react": "^0.13.3",
"superagent": "^1.2.0",
"webpack": "^1.9.11",
"webpack-dev-server": "^1.9.0"
}
}