-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.89 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.89 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
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
{
"name": "duo-backend",
"version": "1.0.0",
"description": "DUO-Backend-proto",
"main": "index.js",
"scripts": {
"test": "env NODE_ENV=test env secret=qMyLZALzs229ybdQXNyzYRdju7X784TH env tokenLife=7d env baseURL=localhost:3000 env SPARKPOST_TOKEN=insertokenhere jest --colors",
"test:clear": "jest --clearCache",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"tsc": "tsc",
"dev": "env ORCID_TOKEN_URL=https://sandbox.orcid.org/oauth/token env ORCID_API_URL=https://api.sandbox.orcid.org/v2.1/ env ORCID_CLIENT_ID=APP-CIF25IJ0S3CDB3C8 ORCID_CLIENT_SECRET=c3ba31f8-7e79-4d0d-bf4c-b6e6c300addd env DATABASE_URL=postgres://duouser:duopassword@127.0.0.1:5432/duo env secret=qMyLZALzs229ybdQXNyzYRdju7X784TH env tokenLife=7d env baseURL=localhost:3000 env NODE_ENV=development env SPARKPOST_TOKEN=insertokenhere env GRAYLOG_SERVER=127.0.0.1 env GRAYLOG_PORT=12202 ts-node-dev --respawn --transpileOnly ./index.ts",
"prod": "tsc && DATABASE_URL=postgres://duouser:duopassword@127.0.0.1:5432/duo secret=qMyLZALzs229ybdQXNyzYRdju7X784TH tokenLife=7d baseURL=localhost:3000 GRAYLOG_SERVER=it-graylog.esss.lu.se GRAYLOG_PORT=12201 node ./build/index.js",
"lint": "tsc --noEmit && eslint . --ext .js,.ts --quiet",
"lint:fix": "tsc --noEmit && eslint . --ext .js,.ts --fix",
"start": "tsc && node ./build/index.js",
"apitest": "newman run api_tests/proposal_tests.json --environment api_tests/environment.json",
"debug": "rm -R -f ./build && tsc && DATABASE_URL=postgres://duouser:duopassword@127.0.0.1:5432/duo secret=qMyLZALzs229ybdQXNyzYRdju7X784TH tokenLife=7d baseURL=localhost:3000 NODE_ENV=development SPARKPOST_TOKEN=insertokenhere GRAYLOG_SERVER=127.0.0.1 GRAYLOG_PORT=12202 ts-node-dev --inspect --respawn --transpileOnly ./index.ts"
},
"lint-staged": {
"**/*.{js,ts}": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@esss-swap/duo-localisation": "^1.1.9",
"@esss-swap/duo-validation": "^1.1.15",
"@types/amqplib": "^0.5.13",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/express-graphql": "^0.8.2",
"@types/express-jwt": "0.0.42",
"@types/graphql": "^14.5.0",
"@types/jsonwebtoken": "^8.3.9",
"@types/multer": "^1.4.3",
"@types/node": "^12.12.36",
"@types/pdfkit": "^0.10.5",
"@types/pg": "^7.14.3",
"@types/pg-large-object": "^2.0.2",
"@types/react-beautiful-dnd": "^11.0.5",
"@types/request-promise": "^4.1.46",
"@types/sparkpost": "^2.1.4",
"@types/yup": "^0.29.0",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"amqplib": "^0.5.3",
"await-to-js": "^2.1.1",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"cookie-parser": "^1.4.5",
"express": "^4.16.4",
"express-graphql": "^0.8.0",
"express-jwt": "^5.3.3",
"gelf-pro": "^1.3.3",
"graphql": "^14.6.0",
"graphql-tools": "^4.0.8",
"hummus": "^1.0.108",
"jsonwebtoken": "^8.5.1",
"knex": "^0.16.5",
"multer": "^1.4.2",
"pdfkit": "^0.10.0",
"pg": "^7.18.2",
"pg-large-object": "^2.0.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"sparkpost": "^2.1.4",
"type-graphql": "^0.17.6",
"typedi": "^0.8.0",
"typescript": "^3.8.3",
"yup": "^0.29.1"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"commander": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lint-staged": "^10.1.6",
"newman": "^4.6.1",
"nodemon": "^1.19.1",
"prettier": "^1.19.1",
"ts-jest": "^25.4.0",
"ts-node-dev": "^1.0.0-pre.44"
}
}