-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.32 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "textbook-exchange",
"version": "0.0.1",
"description": "Textbook exchange!",
"main": "index.js",
"authors": [
"David Pickart",
"Joe Slote",
"Duo Tao"
],
"engines": {
"node": "0.12.0"
},
"dependencies": {
"angular": "^1.3.16",
"aws-lib": "^0.3.0",
"body-parser": "^1.14.1",
"chai": "^3.2.0",
"cloudinary": "^1.3.0",
"connect-assetmanager": "0.0.28",
"express": "^4.12.4",
"express-session": "^1.11.3",
"mailgun-js": "^0.7.11",
"mocha": "^2.3.0",
"mongoose": "^4.0.5",
"multer": "^1.0.6",
"node-sass-middleware": "^0.9.0",
"passport": "^0.2.2",
"passport-local": "^1.0.0",
"pug": "^2.0.0-beta3",
"request": "^2.60.0",
"supertest": "^1.1.0",
"supertest-session": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/CarletonDevX/textbook-exchange.git"
},
"devDependencies": {},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"extends": "eslint:recommended",
"ignore-path": ".gitignore",
"rules": {
"indent": [
"error",
4
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": "warn",
"func-style": [
"warn",
"expression"
],
"space-before-function-paren": [
"error",
"always"
],
"brace-style": "error",
"camelcase": "error",
"new-cap": "error",
"no-lonely-if": "error",
"sort-vars": [
"error",
{
"ignoreCase": true
}
],
"no-redeclare": "warn",
"spaced-comment": [
"error",
"always"
],
"keyword-spacing": [
"error",
{
"before": true,
"after": true
}
],
"comma-dangle": [
"error",
"always-multiline"
],
"comma-spacing": [
"error",
{
"before": false,
"after": true
}
],
"array-bracket-spacing": [
"error",
"never"
]
}
},
"scripts": {
"start": "NODE_ENV=development nodemon server.js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec test/**.js"
},
"keywords": [
"textbook"
],
"license": "ISC"
}