-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
66 lines (66 loc) · 2.13 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
{
"name": "dmd-backend",
"version": "0.0.9",
"description": "DenoteMD backend",
"author": "[email protected]",
"license": "MIT",
"private": true,
"types": "./built/index.d.ts",
"main": "./built/index.js",
"scripts": {
"build": "tsc",
"release": "npm run fix && prettier --check --write ./src/**/*.ts && npm run test && npm run build && node ./devel.js",
"check": "npm run fix && prettier --check --write ./src/**/*.ts && npm run test && npm run build",
"doc": "typedoc",
"test": "echo \"No test specified\" && exit 0",
"mocha-test": "mocha -r ts-node/register tests/\\*\\*/\\*.spec.ts",
"lint": "eslint --config .eslintrc.json --ignore-path .eslintignore ./src/**/*.ts",
"fix": "eslint --config .eslintrc.json --fix --ignore-path .eslintignore ./src/**/*.ts",
"dev": "npx nodemon -e ts -w ./src -x \"npx ts-node ./src/index.ts\"",
"dev:debug": "node --inspect -r ts-node/register ./src/index.ts"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/mocha": "^5.2.7",
"@types/mongoose": "^5.10.3",
"@types/node": "^12.19.16",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "^4.3.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^6.2.2",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typedoc": "^0.20.32",
"typescript": "^3.9.7"
},
"dependencies": {
"aws-sdk": "^2.839.0",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"denote-request": "^1.0.2",
"denote-ui": "^1.0.16",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"logform": "^2.2.0",
"modern-syslog": "^1.2.0",
"moment": "^2.29.1",
"mongoose": "^5.11.15",
"no-case": "^3.0.4",
"noqueue": "^3.0.11",
"safe-buffer": "^5.2.1",
"uuid": "^7.0.3",
"validator": "^13.5.2",
"winston": "^3.3.3",
"winston-transport": "^4.4.0",
"xss": "^1.0.8"
}
}