forked from parse-community/parse-server
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
118 lines (118 loc) · 3.19 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
117
118
{
"name": "parse-server",
"version": "3.4.0",
"description": "An express module providing a Parse-compatible API server",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/parse-community/parse-server"
},
"files": [
"bin/",
"lib/",
"public_html/",
"views/",
"LICENSE",
"PATENTS",
"postinstall.js",
"README.md"
],
"license": "BSD-3-Clause",
"dependencies": {
"@parse/fs-files-adapter": "1.0.1",
"@parse/push-adapter": "3.0.0",
"@parse/s3-files-adapter": "1.2.1",
"@parse/simple-mailgun-adapter": "1.1.0",
"adm-zip": "^0.4.13",
"archiver": "^3.0.0",
"bcryptjs": "2.4.3",
"body-parser": "1.19.0",
"commander": "2.20.0",
"deepcopy": "2.0.0",
"express": "4.17.1",
"follow-redirects": "1.7.0",
"intersect": "1.0.1",
"lodash": "4.17.11",
"lru-cache": "5.1.1",
"mime": "2.4.3",
"mongodb": "3.2.6",
"multer": "^1.4.1",
"parse": "2.4.0",
"pg-promise": "8.7.2",
"redis": "2.8.0",
"semver": "6.1.1",
"tmp": "^0.1.0",
"tv4": "1.3.0",
"uuid": "3.3.2",
"winston": "3.2.1",
"winston-daily-rotate-file": "3.9.0",
"ws": "7.0.0"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/plugin-transform-flow-strip-types": "7.4.4",
"@babel/preset-env": "7.4.5",
"@parse/minami": "1.0.0",
"babel-eslint": "10.0.0",
"bcrypt-nodejs": "0.0.3",
"cross-env": "5.2.0",
"deep-diff": "1.0.2",
"eslint": "5.16.0",
"eslint-plugin-flowtype": "3.9.1",
"flow-bin": "0.99.0",
"gaze": "1.1.3",
"husky": "2.3.0",
"jasmine": "3.4.0",
"jasmine-spec-reporter": "4.2.1",
"jsdoc": "3.6.2",
"jsdoc-babel": "0.5.0",
"lint-staged": "8.1.7",
"mongodb-runner": "4.3.2",
"nyc": "14.1.1",
"prettier": "1.17.1",
"supports-color": "6.0.0"
},
"scripts": {
"definitions": "node ./resources/buildConfigDefinitions.js",
"docs": "jsdoc -c ./jsdoc-conf.json",
"dev": "npm run build && node bin/dev",
"lint": "flow && eslint --cache ./",
"build": "babel src/ -d lib/ --copy-files",
"watch": "babel --watch src/ -d lib/ --copy-files",
"test": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.0.4} MONGODB_STORAGE_ENGINE=mmapv1 TESTING=1 jasmine",
"coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=4.0.4} MONGODB_STORAGE_ENGINE=mmapv1 TESTING=1 nyc jasmine",
"start": "node ./bin/parse-server",
"prepare": "npm run build",
"postinstall": "node -p 'require(\"./postinstall.js\")()'"
},
"engines": {
"node": ">= 8"
},
"bin": {
"parse-server": "./bin/parse-server"
},
"optionalDependencies": {
"node-pre-gyp": "^0.13.0",
"bcrypt": "3.0.6",
"uws": "10.148.1"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/parse-server",
"logo": "https://opencollective.com/parse-server/logo.txt?reverse=true&variant=binary"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,spec}/**/*.js": [
"prettier --write",
"eslint --cache",
"git add"
]
}
}