-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.4 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
{
"name": "notes-app",
"description": "Node.js simple note taking application",
"keywords": [
"node",
"express",
"react"
],
"version": "0.0.0",
"author": "Sasa Macakanja <[email protected]>",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/sasha7/notes-app.git"
},
"scripts": {
"setup": "note setup.js",
"start": "node ./app.js",
"debug": "DEBUG=notes-app:* node --nolazy --debug-brk=5858 ./app.js",
"watch": "./node_modules/.bin/nodemon ./app.js",
"watch:debug": "./node_modules/.bin/nodemon --inspect ./app.js",
"eslint": "./node_modules/.bin/eslint .",
"eslint:fix": "./node_modules/.bin/eslint . --fix",
"eslint:html": "./node_modules/.bin/eslint . -f html -o ./reports/lint-results.html; exit 0",
"db:migrate": "./node_modules/.bin/knex migrate:latest",
"db:seed": "./node_modules/.bin/knex seed:run",
"test": "mocha"
},
"pre-commit": [
"eslint"
],
"dependencies": {
"bcryptjs": "^2.4.0",
"body-parser": "~1.15.2",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"dotenv": "^4.0.0",
"express": "~4.14.0",
"express-flash": "0.0.2",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.0",
"express-validator": "^3.1.2",
"file-stream-rotator": "0.0.7",
"fs-extra": "^1.0.0",
"knex": "^0.12.6",
"lodash": "^4.17.4",
"method-override": "^2.3.7",
"morgan": "~1.7.0",
"nodemailer": "^3.0.2",
"objection": "^0.6.2",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"passport.socketio": "^3.7.0",
"pg": "^6.1.2",
"pg-error": "^1.0.0",
"pg-hstore": "^2.3.2",
"serve-favicon": "~2.3.0",
"session-file-store": "^1.0.0",
"socket.io": "^1.7.2"
},
"devDependencies": {
"browser-sync": "^2.18.6",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"supertest": "^1.2.0",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1",
"nodemon": "^1.11.0",
"open": "0.0.5",
"pre-commit": "^1.2.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sasha7/notes-app/issues"
},
"engines": {
"node": ">= 5",
"npm": ">= 3"
}
}