-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.24 KB
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
{
"name": "edms-v2",
"version": "1.0.0",
"description": "Example back-end file/submission broker for Drupal",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "ts-node-dev src/index.ts",
"build:api": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datajohnson/edms-v2.git"
},
"author": "Michael Johnson",
"license": "ISC",
"bugs": {
"url": "https://github.com/datajohnson/edms-v2/issues"
},
"homepage": "https://github.com/datajohnson/edms-v2#readme",
"dependencies": {
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"helmet": "^4.2.0",
"knex": "^0.21.12",
"node-schedule": "^1.3.2",
"nodemailer": "^6.4.16",
"pg": "^8.5.1",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/express-fileupload": "^1.1.5",
"@types/helmet": "^4.0.0",
"@types/node": "^14.14.7",
"@types/node-schedule": "^1.3.1",
"@types/nodemailer": "^6.4.0",
"@types/uuid": "^8.3.0",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.5"
}
}