-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.12 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
{
"name": "jwt-auth-lib",
"version": "1.1.0",
"description": "",
"main": "dist/index",
"types": "types/index",
"scripts": {
"start": "node build/index.js",
"dev:build": "webpack --watch --mode production --config webpack.config.ts",
"dev:run-build": "nodemon build/index.js --watch build",
"dev": "concurrently \"npm run dev:build\" \"npm run dev:run-build\"",
"clean:dev": "rimraf build",
"clean:package": "rimraf dist",
"build:package": "webpack --mode production --config webpack.config.ts --env type=package ",
"prebuild": "npm install",
"prepare": "npm run build:package",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "@ogheneovo12",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.14",
"argon2": "^0.30.3",
"cors": "^2.8.5",
"dayjs": "^1.11.9",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"ms": "^2.1.3",
"nestdb": "^2.0.0",
"redis": "^4.6.7",
"redis-om": "^0.4.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/cors": "^2.8.13",
"@types/jsonwebtoken": "^9.0.2",
"@types/ms": "^0.7.31",
"@types/nestdb": "^2.0.3",
"@types/node": "^18.11.11",
"@types/uuid": "^9.0.2",
"@types/webpack": "^5.28.0",
"@types/webpack-node-externals": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"babel-loader": "^9.1.0",
"concurrently": "^8.2.0",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin-next": "^2.3.1"
}
}