-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.76 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
{
"name": "crewing",
"version": "1.0.0",
"repository": "cadus/crewing",
"description": "Helps to gather people and plan missions",
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">=8.4.0",
"npm": ">=3.0.0"
},
"scripts": {
"start": "bash start.sh",
"update-local-db": "mongo crewing --eval 'db.dropDatabase();'; ssh cadus mongodump --db crewing --archive --gzip | mongorestore --archive --gzip",
"deploy": "ssh cadus 'cd crewing && git pull && pm2 ls && pm2 reload crewing'",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"babel-core": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babelify": "^7.3.0",
"browserify-css": "^0.10.1",
"browserify-middleware": "^7.0.0",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"elemental": "^0.6.1",
"express": "^4.15.2",
"jade": "^1.11.0",
"keystone": "https://github.com/cadus/keystone.git",
"keystone-email": "https://github.com/cadus/keystone-email.git",
"keystone-utils": "^0.4.0",
"leaflet": "^1.0.3",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"model-transform": "^2.0.0",
"moment": "^2.18.1",
"nodemailer": "^3.1.8",
"query-string": "^4.3.4",
"react": "^15.4.2",
"react-calendar-timeline": "^0.11.1",
"react-datepicker": "^0.43.0",
"react-dom": "^15.4.2",
"react-leaflet": "^1.1.4",
"react-select": "^1.0.0-rc.3",
"recursive-iterator": "^2.0.3",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-preset-stage-3": "^6.22.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3"
}
}