forked from twinlabs/forum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (50 loc) · 1.43 KB
/
package.json
File metadata and controls
52 lines (50 loc) · 1.43 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
{
"name": "forum.node",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://github.com/twinlabs/forum.node/"
},
"main": "app.js",
"engines": {
"node": "0.10.x"
},
"scripts": {
"db:seed": "node db/seed.js",
"deploy": "git push heroku deploy:master",
"test": "NODE_ENV=test mocha --require test/test_helper.js --recursive ./test",
"test:watch": "NODE_ENV=test mocha --require test/test_helper.js --recursive --watch --reporter min ./test",
"test:debug": "NODE_ENV=test node-debug _mocha --require test/test_helper.js --recursive --watch --reporter min ./test",
"start": "node app.js",
"start:debug": "node-debug app.js"
},
"dependencies": {
"autoprefixer-core": "~3.0.0",
"express": "3.2.0",
"express-session": "1.7.6",
"optimist": "0.6.0",
"less-middleware": "1.0.4",
"lodash": "2.4.1",
"node-imagemagick": "0.1.8",
"marked": "git://github.com/twinlabs/marked.git",
"socket.io": "~0.9.9",
"socket.io-client": "~0.9.9",
"jade": "~0.35.0",
"moment": "~2.5.0",
"jquery": "2.1.0-beta2",
"velocity-animate": "~1.1.0",
"async": "0.2.8",
"pg": "~2.11.1",
"sequelize": "~1.7.8",
"connect-pg-simple": "^2.1.1",
"passport": "~0.2.0",
"passport-local": "~1.0.0",
"bcrypt": "~0.8.0"
},
"devDependencies": {
"mocha": "~1.13.0",
"request": "^2.49.0",
"sinon": "~1.7.3",
"nodemon": "~0.7.10"
}
}