-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 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
{
"name": "passprotect-server",
"version": "1.4.0",
"description": "Server used to keep password of the user in a secure store",
"author": "Ulrich Van Den Hekke <[email protected]>",
"licence": "MIT",
"private": true,
"scripts": {
"start": "DEBUG=App:* node --experimental-modules server/app",
"start:debug": "DEBUG=App:* node --experimental-modules --inspect server/app",
"lint": "eslint --ext .js,.mjs server"
},
"main": "",
"engines": {
"node": ">= 10.11.0",
"npm": ">= 6.4.1"
},
"dependencies": {
"apollo-server": "^2.1.0",
"bcrypt": "^3.0.1",
"config": "~2.0.1",
"debug": "^4.0.1",
"dotenv": "^6.0.0",
"graphql": "^14.0.2",
"i18next": "^11.9.0",
"i18next-node-fs-backend": "~2.1.0",
"jsonwebtoken": "~8.3.0",
"lodash": "~4.17.11",
"moment": "~2.22.2",
"mongodb": "^3.1.6"
},
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
}
}