-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "authentication-server",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"prestart": "npm run build",
"start": "node build",
"dev": "set NODE_ENV=development&& webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"docker:build": "docker-compose build --no-cache",
"docker:up": "docker-compose up --force-recreate"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.3.1",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"copy-webpack-plugin": "^11.0.0",
"nodemon": "^2.0.22",
"rimraf": "^5.0.1",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.1.3",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin-next": "^2.3.1"
},
"dependencies": {
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-helix": "^1.13.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.3.0",
"qs": "^6.11.2",
"serverless-http": "^3.2.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3"
}
}