-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.13 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
{
"name": "app",
"version": "1.0.0",
"description": "app",
"scripts": {
"init-cloud-code": "cd CloudCode && b4a new -i",
"lint": "eslint --ignore-path .gitignore .",
"build": "babel-node tools/run build",
"deploy": "cd CloudCode && b4a deploy",
"start": "babel-node tools/run start"
},
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.0.0-beta.39",
"@line/bot-sdk": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.39",
"@babel/node": "^7.0.0-beta.39",
"@babel/plugin-transform-runtime": "^7.0.0-beta.39",
"@babel/preset-env": "^7.0.0-beta.39",
"@babel/preset-stage-0": "^7.0.0-beta.39",
"babel-eslint": "^8.2.1",
"babel-loader": "^8.0.0-beta.0",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.6.0",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"webpack": "^3.10.0",
"webpack-node-externals": "git+https://github.com/dplusic/webpack-node-externals.git#0864d8c2309ac065e94a48bd57cf4e775fbd09f6"
},
"optionalDependencies": {
"aws-sdk": "2.6.15",
"body-parser": "1.15.2",
"braintree": "1.42.0",
"cookie-parser": "1.4.3",
"crypto-js": "3.1.8",
"express": "4.14.0",
"kerberos": "0.0.21",
"mailgun-js": "0.7.13",
"mandrill-api": "1.0.45",
"mercadopago": "0.5.0",
"method-override": "2.3.7",
"mongodb": "2.2.10",
"morgan": "1.7.0",
"numeral": "1.5.3",
"parse-express-cookie-session": "git+https://github.com/back4app/parse-express-cookie-session.git#81e1665762b5a308ace54aa862f5a8cb7d4850c0",
"parse-express-https-redirect": "git+https://github.com/back4app/parse-express-https-redirect.git#1a3734bb6d1b05ef83b688ebc49f2a19a68ab1e5",
"parse-image": "0.2.0",
"parse-server": "git+https://github.com/back4app/parse-server.git#b4e03a2024e053168396468fb6c9af69c464df9f",
"parse-server-mailgun-adapter-template": "1.1.7",
"parse-server-mandrill-adapter": "1.2.1",
"parse-server-s3-adapter": "git+https://github.com/parse-server-modules/parse-server-s3-adapter#874248d1ecfadc5ed9114f16bbffecbabbd23ad8",
"plivo": "0.4.0",
"pug": "2.0.0-beta6",
"pusher": "1.5.0",
"sendgrid": "4.7.1",
"stripe": "4.12.0",
"twilio": "2.11.0",
"underscore": "1.8.3",
"winston": "2.3.0",
"winston-mongodb": "2.0.8",
"xlsx": "0.8.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "4.5.0"
}
}
],
"@babel/preset-stage-0"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb/base",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error",
"import/no-extraneous-dependencies": [
"error",
{
"packageDir": "."
}
]
},
"globals": {
"__DEV__": true
}
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"trailingComma": "all"
}
}