-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "courier-admin-api",
"version": "1.0.0",
"description": "Parse Server REST API for the Courier Admin Dashboard. Allows creation of Clients, Providers and Shippings. And is integrated with Xubio",
"author": "Nayra Cooper",
"homepage": "https://nayra.coop",
"license": "GPL-3.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/nayracoop/courier-admin-api"
},
"dependencies": {
"assert": "^1.4.1",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"jake": "^8.0.19",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mongodb": "^3.1.10",
"parse": "^2.1.0",
"parse-server": "^2.8.1",
"request-promise": "^4.2.2"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"migrations": "cd tasks && jake migrate"
},
"engines": {
"node": ">=4.3"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^2.0.2"
}
}