-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.74 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "code-send-backend",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"build": "tsc --build",
"start": "NODE_PATH=./build node build/server.js",
"dev": "ts-node-dev -r tsconfig-paths/register src/server.ts",
"test": "jest",
"coverage": "jest --coverage --watch-all",
"prettier": "prettier --write '{src,test,mock}/**/*.{ts,tsx}'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@mapbox/mapbox-sdk": "^0.10.0",
"@types/bcrypt": "^3.0.0",
"@types/jsonwebtoken": "^8.3.9",
"@types/mapbox__mapbox-sdk": "^0.6.2",
"bcrypt": "^4.0.1",
"cloudinary": "^1.21.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.8.10"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/build/"
],
"modulePaths": [
"src"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier"
}
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/chai": "^4.2.7",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/jest": "^24.9.1",
"@types/mongoose": "^5.7.0",
"@types/multer": "^1.4.0",
"@types/supertest": "^2.0.8",
"babel-jest": "^25.1.0",
"chai": "^4.2.0",
"husky": "^4.2.2",
"jest": "^25.1.0",
"mongodb-memory-server": "^6.2.4",
"multer": "^1.4.2",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-node-dev": "^1.0.0-pre.44",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.5"
}
}