-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "dashbored",
"version": "1.0.0",
"description": "Dashbored is an all-in-one dashboard for users to keep notes, track the weather, get news updates, etc. Built with Express, Angular, Node, and SQLite.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "NODE_ENV=development nodemon server.js",
"bower": "./node_modules/bower/bin/bower"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beatface/dashbored.git"
},
"keywords": [],
"author": "“Emma <“[email protected]”>",
"license": "MIT",
"bugs": {
"url": "https://github.com/beatface/dashbored/issues"
},
"eslintConfig": {
"env": {
"node": true,
"es6": true,
"browser": true
},
"extends": "eslint:recommended",
"globals": {
"res": true,
"next": true,
"app": true
},
"rules": {
"no-console": 1,
"comma-dangle": 0,
"no-unused-vars": 1,
"no-undef": 1,
"no-extra-semi": 1,
"no-empty": 1
}
},
"homepage": "https://github.com/beatface/dashbored#readme",
"dependencies": {
"body-parser": "^1.15.0",
"cors": "^2.7.1",
"electron-connect": "^0.3.7",
"electron-prebuilt": "^0.36.10",
"express": "^4.13.4",
"jade": "^1.11.0",
"node-sass-middleware": "^0.9.7",
"sqlite3": "^3.1.1",
"twit": "^2.2.3"
},
"devDependencies": {
"bower": "^1.7.7",
"gulp": "^3.9.1",
"nodemon": "^1.9.1"
}
}