-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.24 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.24 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
{
"name": "diamante",
"version": "2.1.15",
"private": true,
"main": "server.js",
"repository": "",
"scripts": {
"build": "tsc",
"dev": "nodemon build/server",
"start": "node build/server",
"test": "jest"
},
"keywords": [
"diamante"
],
"author": "Mario Martin",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.4",
"npm": "^6.14.6",
"pg": "^7.14.0",
"redis": "^2.8.0",
"socket.io": "^2.4.0"
},
"description": "Boilerplate full stack web application",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.1",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/helmet": "0.0.45",
"@types/jest": "^24.0.23",
"@types/jsonwebtoken": "^8.3.5",
"@types/node": "^12.12.17",
"@types/redis": "^2.8.14",
"@types/socket.io": "^2.1.4",
"jest": "^24.9.0",
"nodemon": "^2.0.1",
"ts-jest": "^24.2.0"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/src/client"
],
"globals": {
"ts-jest": {
"compiler": "ttypescript"
}
}
}
}