-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.46 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "netlock",
"version": "1.0.0",
"description": "Locking down the network one beacon at a time",
"main": "dist/src/index.js",
"scripts": {
"test": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 jest",
"start:dev": "cross-env DEVELOPMENT=TRUE nodemon dist/src/index.js",
"build:dev": "concurrently --kill-others \"tsc --watch\" \"webpack -w\"",
"build": "tsc",
"start": "node dist/src/index.js"
},
"keywords": [
"Network",
"Computers",
"Beacons",
"React",
"Express",
"Typescript"
],
"author": "Mohamad Khawam",
"license": "ISC",
"dependencies": {
"@express-rate-limit/tsconfig": "^1.0.2",
"abstract-level": "^2.0.0",
"args": "^5.0.3",
"bcrypt": "^5.1.1",
"colors": "^1.4.0",
"compression": "^1.7.4",
"css-loader": "^7.1.2",
"express": "^4.19.2",
"express-file-routing": "^3.0.3",
"express-rate-limit": "^7.3.1",
"helmet": "^7.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"level": "^8.0.0",
"morgan": "^1.10.0",
"netlock": "file:",
"netlocklib": "file:lib",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.25.1",
"style-loader": "^4.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@jest/globals": "^29.7.0",
"@types/args": "^5.0.3",
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/level": "^6.0.3",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"daisyui": "^4.12.10",
"nodemon": "^3.1.4",
"postcss": "^8.4.40",
"postcss-loader": "^8.1.1",
"tailwindcss": "^3.4.7",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
}
}