-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"name": "eldolar",
"version": "1.0.0",
"engines": {
"node": "10.15.3"
},
"description": "bank exchange by eldolar",
"main": "app.js",
"license": "MIT",
"dependencies": {
"@types/cheerio": "^0.22.9",
"@types/cors": "^2.8.5",
"@types/express": "^4.16.0",
"apidoc": "^0.17.7",
"axios": "^0.18.1",
"cheerio": "^1.0.0-rc.2",
"concurrently": "^4.0.1",
"cors": "^2.8.5",
"express": "^4.16.3",
"lodash": "4.17.19",
"mongoose": "^5.2.17",
"nodemon": "^1.18.4"
},
"scripts": {
"heroku-postbuild": "yarn run tsc",
"test": "mocha -r ts-node/register test/**/*.ts",
"watch-ts": "tsc -w",
"watch-node": "nodemon dist/app.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript, Node\" -c \"yello.bold, cyan.bold\" \"yarn run watch-ts\" \"yarn run watch-node\"",
"docs": "apidoc -i src/ -o public/apidoc/",
"lint": "yarn eslint --ext .js,.ts,.tsx src/** test/**"
},
"devDependencies": {
"@types/chai": "^4.1.5",
"@types/mocha": "^5.2.5",
"@types/mongoose": "^5.2.17",
"@types/nock": "^9.3.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"chai": "^4.2.0",
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"mocha": "^5.2.0",
"nock": "^10.0.0",
"ts-node": "^7.0.1",
"typescript": "^4.0.5"
}
}