-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.25 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
{
"name": "onibe",
"version": "0.0.1",
"description": "",
"private": true,
"scripts": {
"start": "node ./bin/www",
"debug": "node --inspect ./bin/www",
"complete-start": "npm run build && node ./bin/www",
"pm-start": "git pull origin master && pm2 start npm --name \"onibe\" -- start",
"pm-restart": "git pull origin master && npm run build && pm2 restart onibe",
"clean-database": "node server/jobs/clean-database.js",
"build": "gulp build",
"dev": "gulp default",
"test-db": "tap server/tests/*.spec.js"
},
"dependencies": {
"bcrypt": "^1.0.1",
"body-parser": "^1.15.2",
"browser-request": "^0.3.3",
"compression": "^1.6.2",
"connect-session-sequelize": "^4.1.0",
"cookie-parser": "~1.3.5",
"debug": "^2.6.0",
"dompurify": "^0.8.4",
"express": "^4.14.0",
"express-session": "^1.14.2",
"fetch": "^1.1.0",
"glob": "^7.0.3",
"hbs": "^3.1.0",
"jquery": "^3.0.0",
"jsdom": "^9.10.0",
"lodash": "^4.17.2",
"moment": "^2.17.1",
"momentjs": "^2.0.0",
"morgan": "^1.7.0",
"nodemailer": "^2.4.2",
"nodemailer-sendgrid-transport": "^0.2.0",
"nunjucks": "^2.4.2",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"redux-devtools-extension": "^1.0.0",
"redux-logger": "^2.7.4",
"redux-promise-middleware": "^4.2.0",
"redux-thunk": "^2.1.0",
"remarkable": "^1.7.1",
"request": "^2.79.0",
"sequelize": "^3.28.0",
"smoothscroll-polyfill": "^0.3.4",
"sqlite3": "^3.1.8",
"ui-router-react": "^0.4.0",
"webpack": "^1.13.1",
"whatwg-fetch": "^2.0.1",
"winston": "^2.1.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"bootstrap-sass": "^3.3.6",
"chai": "^3.5.0",
"del": "^2.1.0",
"eslint": "^3.14.0",
"eslint-plugin-react": "^6.8.0",
"gulp": "^3.9.0",
"gulp-sass": "^2.1.0",
"gulp-util": "^3.0.7",
"mocha": "^2.5.3",
"node-sass": "^4.5.3",
"run-sequence": "^1.1.5",
"sequelize-cli": "^2.5.1",
"tap": "^8.0.1",
"webpack": "^1.13.1"
},
"engines": {
"node": ">=7.4.0"
}
}