-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.98 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
67
68
{
"name": "scotty-server",
"version": "1.0.0",
"description": "Node application managing your expenses",
"main": "src/index.js",
"scripts": {
"test": "jest --detectOpenHandles --forceExit",
"start": "ts-node src/index.ts",
"server-dev": "node ./node_modules/nodemon/bin/nodemon.js",
"server-build": "tsc",
"lint": "eslint . --ext ts",
"lint-fix": "eslint . --ext ts --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/robence/scotty-server.git"
},
"author": "robence",
"license": "ISC",
"dependencies": {
"@overnightjs/core": "^1.4.1",
"@overnightjs/logger": "^1.1.9",
"@types/mongoose": "^5.5.5",
"@types/mongoose-unique-validator": "^1.0.1",
"@types/supertest": "^2.0.8",
"ajv": "^6.10.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-async-handler": "^1.1.4",
"express-jwt": "^5.3.1",
"http-status-codes": "^1.3.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"mongoose-hidden": "^1.8.0",
"mongoose-unique-validator": "^2.0.2",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"supertest": "^3.4.2",
"to": "^0.2.9",
"typescript": "^3.3.3",
"update": "^0.7.4"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/jest": "^24.0.13",
"@types/node": "^10.12.26",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.1.0",
"nodemon": "^1.19.2",
"prettier": "^1.18.2",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"ts-jest": "^24.0.0",
"ts-node": "^7.0.1"
}
}