-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.8 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.8 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
72
73
{
"name": "blueprint-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage --watch-all",
"start": "node ./build/server.js",
"build": "tsc --build",
"dev": "tsnd --respawn ./src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indent-dev/blueprint-api.git"
},
"keywords": [],
"author": {
"name": "indent-dev",
"url": "https://github.com/indent-dev/"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/indent-dev/blueprint-api/issues"
},
"homepage": "https://github.com/indent-dev/blueprint-api#readme",
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.11",
"@types/jest": "^26.0.4",
"@types/supertest": "^2.0.10",
"babel-jest": "^26.1.0",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"chai": "^4.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.0",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"mongodb-memory-server": "^6.6.1",
"mongoose": "^5.9.21"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/build/"
],
"modulePaths": [
"src"
]
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/helmet": "0.0.47",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.29",
"jest": "^26.1.0",
"supertest": "^4.0.2",
"ts-node-dev": "^1.0.0-pre.50",
"typescript": "^3.9.6"
}
}