-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 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
{
"name": "battleship-restful-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/melitus/battleship-restful-api.git",
"author": "melitus <asmelitus@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"build": "rimraf ./dist && tsc",
"start": "node dist/server/index.js",
"test": "mocha -r ts-node/register 'src/tests/**/*.test.ts' --timeout 60000"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status": "^1.5.0",
"lodash": "^4.17.20",
"mongodb": "^3.6.3",
"mongoose": "^5.6.3",
"shortid": "^2.2.16",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.0",
"@types/mongoose": "^5.10.3",
"@types/node": "^14.14.22",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"faker": "^5.1.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^5.0.0",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}